/* ===================================
   GEMINI AI TRAINING - Landing Page Styles
   Light Theme Inspired by Kikagaku Corporate
   =================================== */

/* CSS Variables */
:root {
    /* Colors - Clean Light Theme */
    --color-bg: #ffffff;
    --color-bg-elevated: #f8fafc;
    --color-bg-card: #ffffff;
    --color-bg-hover: #f1f5f9;
    
    /* Brand Colors - Professional Blue/Teal Accent */
    --color-primary: #0891b2;
    --color-primary-light: #06b6d4;
    --color-primary-dark: #0e7490;
    --color-secondary: #6366f1;
    --color-accent: #14b8a6;
    
    /* Text Colors */
    --color-text: #1e293b;
    --color-text-muted: #64748b;
    --color-text-dim: #94a3b8;
    
    /* Semantic Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    
    /* Borders */
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-dark: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-elevated) 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(8, 145, 178, 0.08) 0%, transparent 70%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Noto Sans JP', var(--font-sans);
    --font-serif: 'Instrument Serif', Georgia, serif;
    
    /* Spacing */
    --section-padding: clamp(40px, 5vw, 60px);
    --container-max: 1200px;
    --container-padding: clamp(20px, 4vw, 60px);
    
    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
    
    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: #ffffff;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
}

/* Fixed Decoration - Scroll Following */
.fixed-deco {
    position: fixed;
    z-index: 0;
    pointer-events: none;
}

.fixed-deco img {
    width: 100%;
    height: auto;
    display: block;
}

/* Left decoration (deco-left.svg) - Bottom left, subtle */
.fixed-deco-left {
    left: -80px;
    bottom: -100px;
    width: 420px;
    opacity: 0.25;
}

/* Right decoration (deco-right.svg) - Top right */
.fixed-deco-right {
    right: -60px;
    top: -100px;
    width: 480px;
    opacity: 0.2;
}

@media (max-width: 768px) {
    .fixed-deco-left {
        width: 280px;
        left: -60px;
        bottom: -80px;
        opacity: 0.25;
    }
    
    .fixed-deco-right {
        width: 300px;
        right: -50px;
        top: -80px;
        opacity: 0.2;
    }
}

/* Selection */
::selection {
    background-color: var(--color-primary);
    color: white;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===================================
   Custom Cursor - Disabled
   =================================== */
.custom-cursor,
.cursor-follower {
    display: none !important;
}

/* ===================================
   Navigation
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out-quart);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo .logo-image {
    height: 40px;
    width: auto;
}

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

.logo-badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    background: var(--gradient-primary);
    border-radius: 100px;
    color: white;
}

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

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-text);
}

.nav-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta-secondary {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 12px 20px;
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-quart);
    white-space: nowrap;
}

.nav-cta-secondary:hover {
    background: var(--color-bg-hover);
    border-color: var(--color-text-dim);
    transform: translateY(-1px);
}

.nav-cta {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 12px 28px;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-quart);
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: var(--color-primary-dark);
    box-shadow: 0 10px 40px rgba(8, 145, 178, 0.3);
}

/* Primary CTA - Highlighted Button (Money Forward style) */
.nav-cta-primary {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 28px;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-quart);
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.35);
    white-space: nowrap;
}

.nav-cta-primary:hover {
    transform: translateY(-3px);
    background: var(--color-primary-dark);
    box-shadow: 0 8px 30px rgba(8, 145, 178, 0.5);
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-quart);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu-content a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out-quart);
}

.mobile-menu.active .mobile-menu-content a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-content a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-content a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-content a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-content a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-content a:nth-child(5) { transition-delay: 0.3s; }

.mobile-cta-secondary {
    margin-top: 20px;
    padding: 16px 40px;
    background: rgba(8, 145, 178, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: 100px;
    color: var(--color-primary) !important;
}

.mobile-cta {
    margin-top: 12px;
    padding: 16px 40px;
    background: var(--gradient-primary);
    border-radius: 100px;
}

.mobile-cta-primary {
    margin-top: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 8px;
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.4);
}

@media (max-width: 768px) {
    .nav-links, .nav-ctas {
        display: none;
    }
    
    .nav-menu-btn {
        display: flex;
    }
}

/* ===================================
   Hero Section - Split Layout
   =================================== */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 90px 0 40px;
    background: #ffffff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(8, 145, 178, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(20, 184, 166, 0.06) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(8, 145, 178, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 145, 178, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: float 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--color-secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

/* Hero Decoration */
.hero-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    text-align: right;
    z-index: 0;
    pointer-events: none;
}

.hero-deco img {
    width: 100%;
    max-width: 750px;
    height: auto;
}

/* PC: Show deco-right.svg, SP: Show deco-right-sp.svg */
.hero-deco-pc {
    display: block;
}

.hero-deco-sp {
    display: none;
}

@media (max-width: 768px) {
    .hero-deco-pc {
        display: none;
    }
    
    .hero-deco-sp {
        display: block;
        width: 60%;
    }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.02); }
}

/* Hero Container - Split Layout */
.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(8, 145, 178, 0.08);
    border: 1px solid rgba(8, 145, 178, 0.25);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 32px;
}

.hero-badge-highlight {
    background: rgba(8, 145, 178, 0.15);
    border: 1px solid rgba(8, 145, 178, 0.4);
    color: #1e293b;
    font-size: 0.95rem;
    padding: 10px 24px;
    font-weight: 500;
    margin-bottom: 8px;
}

.hero-badge-highlight strong {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

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

.hero-description {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-quart);
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--color-primary-dark);
    box-shadow: 0 20px 40px rgba(8, 145, 178, 0.25);
}

.btn-secondary {
    background: rgba(100, 116, 139, 0.08);
    color: var(--color-text);
    border: 2px solid #64748b;
}

.btn-secondary:hover {
    background: var(--color-bg-hover);
    border-color: var(--color-text-dim);
}

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

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

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    flex-wrap: wrap;
}

/* Hero Visual - Right Side */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
    width: 100%;
    max-width: 650px;
    transform: scale(1.05);
}

.hero-visual-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.25), 0 10px 30px -10px rgba(8, 145, 178, 0.2);
}

.hero-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05) 0%, transparent 50%);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.hero-visual-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(6, 182, 212, 0.2) 50%, rgba(168, 85, 247, 0.15) 100%);
    border-radius: calc(var(--radius-xl) + 20px);
    filter: blur(40px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card-icon {
    font-size: 1.25rem;
}

.floating-card-1 {
    top: 5%;
    right: -10px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 35%;
    left: -20px;
    animation-delay: -1.5s;
}

.floating-card-3 {
    bottom: 5%;
    right: 5%;
    animation-delay: -3s;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-dim);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-text-dim);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-text-dim), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================================
   Clients Section
   =================================== */
.clients {
    padding: 40px 0;
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.clients-header {
    text-align: center;
    margin-bottom: 32px;
}

.clients-headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.clients-number {
    color: var(--color-primary-light);
}

.clients-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.clients-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.clients-slide {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 12px;
}

.clients-slide .logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 60px;
    padding: 12px 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.clients-slide .logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.clients-slide img {
    height: 28px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* 特定ロゴのサイズ調整 */
.clients-slide img[alt="muRata"],
.clients-slide img[alt="第一三共"],
.clients-slide img[alt="KONICA MINOLTA"],
.clients-slide img[alt="SAPPORO"] {
    height: 38px;
    max-width: 140px;
}

.clients-slide .logo-fallback {
    display: none;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* Brand-specific colors for text logos (on white background) */
.logo-fallback { color: #333; }
.logo-denso { color: #c8102e; }
.logo-docomo { color: #e60012; }
.logo-sumitomo { color: #003d7c; }
.logo-murata { color: #0068b7; }
.logo-panasonic { color: #003d7c; }
.logo-dnp { color: #e60012; }
.logo-yanmar { color: #e60012; }
.logo-ihi { color: #e60012; }
.logo-daiichi { color: #c8102e; }
.logo-konica { color: #003d7c; }
.logo-fujifilm { color: #00a650; }
.logo-sapporo { color: #d4a00a; }
.logo-microsoft { color: #00a4ef; }
.logo-scsk { color: #0068b7; }
.logo-fuji-electric { color: #003d7c; }
.logo-itoki { color: #e60012; }
.logo-seibu { color: #003d7c; }
.logo-dentsu { color: #003d7c; }
.logo-shikoku { color: #0068b7; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    margin-bottom: 60px;
}

.section-header-center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.section-title em {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-about {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    line-height: 1.4;
}

.section-title-about em {
    font-weight: 700;
}

.section-title em.highlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: #fff;
    font-size: 0.6em;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    top: -4px;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(8, 145, 178, 0.5);
    }
}

/* ===================================
   Crisis & Solution Section
   =================================== */
.crisis-solution {
    padding: var(--section-padding) 0 24px;
    background: var(--color-bg);
    overflow: hidden;
}

/* Crisis Block */
.crisis-block {
    margin-bottom: 80px;
}

.crisis-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.crisis-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.crisis-card {
    background: #fff;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crisis-card:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.crisis-card-photo {
    padding: 0;
}

.crisis-photo {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.crisis-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crisis-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.crisis-card-content {
    padding: 28px 24px 32px;
    background: #ffffff;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #dc2626, #ef4444, #f97316) 1;
}

.crisis-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.crisis-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

.crisis-message {
    text-align: center;
    margin-top: 48px;
    margin-bottom: 48px;
}

.crisis-narrative {
    text-align: center;
    margin-top: 56px;
    margin-bottom: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.narrative-lead {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.8;
}

.narrative-lead strong {
    color: #1e293b;
    background: linear-gradient(to top, rgba(239, 68, 68, 0.2) 30%, transparent 30%);
}

.narrative-body {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 2;
    margin-bottom: 32px;
}

.narrative-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.9;
    margin-bottom: 28px;
    font-style: italic;
}

.narrative-conclusion {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.8;
}

.narrative-conclusion strong {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Turning Point */
.turning-point {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 24px;
    padding: 48px 40px;
    margin: 48px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.turning-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.turning-point-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

.turning-point-deco img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.turning-point-deco-left {
    left: -80px;
    bottom: -60px;
    width: 300px;
    height: 300px;
    transform: rotate(15deg);
}

.turning-point-deco-right {
    right: -60px;
    top: -40px;
    width: 280px;
    height: 280px;
    transform: rotate(-10deg);
}

.turning-point-content {
    position: relative;
    z-index: 2;
}

.turning-label {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.turning-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: white;
    line-height: 1.4;
}

.turning-title em {
    color: #60a5fa;
    font-style: normal;
}

.turning-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    font-weight: 500;
}

/* Solution Block */
.solution-block {
    padding-top: 40px;
}

.solution-impact {
    margin-bottom: 0;
}

.impact-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 48px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
}

.impact-before,
.impact-after {
    text-align: center;
    padding: 32px 48px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.impact-before {
    border: 2px solid #e2e8f0;
}

.impact-after {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
}

.impact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.impact-after .impact-label {
    color: #3b82f6;
}

.impact-icon-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 2rem;
    margin-bottom: 12px;
}

.impact-person {
    width: 40px;
    height: 40px;
    color: #64748b;
}

.impact-after .impact-person {
    color: #3b82f6;
}

.impact-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.impact-ai {
    width: 44px;
    height: 44px;
    color: #3b82f6;
}

.ai-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 100px;
}

.impact-before p,
.impact-after p {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    margin: 0;
}

.impact-after p {
    color: #1e40af;
}

.impact-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.impact-arrow svg {
    stroke: white;
}

/* Solution Message */
.solution-message {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.solution-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.solution-message h3 em {
    color: #3b82f6;
    font-style: normal;
}

.solution-message p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.9;
}

.solution-message strong {
    color: #1e293b;
    font-weight: 700;
}

.solution-message-hero {
    max-width: none;
    background: transparent;
    padding: 16px 0 32px;
    border-radius: 0;
    margin-bottom: 8px;
    box-shadow: none;
    position: relative;
}

.solution-message-hero h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.solution-message-hero p {
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
    color: #64748b;
    line-height: 1.9;
}

/* Solution Bridge */
.solution-bridge {
    text-align: center;
    padding: 24px 0;
}

.solution-bridge p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.9;
}

.solution-bridge strong {
    color: #1e293b;
    font-weight: 700;
}

/* Deliverables Preview */
.deliverables-preview {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    margin-bottom: 48px;
}

.deliverables-preview h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
}

.deliverables-preview h4 em {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.deliverables-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

.deliverable-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1.5px solid rgba(59, 130, 246, 0.15);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deliverable-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.deliverable-photo {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.deliverable-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.deliverable-card:hover .deliverable-photo img {
    transform: scale(1.05);
}

.deliverable-card-body {
    padding: 24px 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.deliverable-clickable {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deliverable-clickable:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.deliverable-clickable .deliverable-card-body::after {
    content: '対応プランを見る →';
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 8px;
}

.pricing-card-highlight {
    animation: pricingHighlight 2s ease;
}

@keyframes pricingHighlight {
    0%, 100% { box-shadow: var(--shadow-lg); }
    25%, 75% { box-shadow: 0 0 0 4px var(--color-primary), var(--shadow-lg); }
    50% { box-shadow: 0 0 0 6px var(--color-primary), var(--shadow-lg); }
}

.deliverable-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    opacity: 1;
    z-index: 1;
}

.deliverable-name {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
}

.deliverable-desc {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .crisis-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .crisis-card-content {
        padding: 24px 20px;
    }
    
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .crisis-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .crisis-card-content {
        padding: 24px 20px 28px;
    }
    
    .crisis-photo {
        height: 180px;
    }
    
    .turning-point {
        padding: 48px 24px;
        margin: 40px 0;
    }
    
    .turning-point-deco {
        opacity: 0.1;
    }
    
    .turning-point-deco-left {
        width: 200px;
        height: 200px;
        left: -60px;
        bottom: -40px;
    }
    
    .turning-point-deco-right {
        width: 180px;
        height: 180px;
        right: -40px;
        top: -30px;
    }
    
    .impact-visual {
        flex-direction: column;
        padding: 32px 20px;
        gap: 24px;
    }
    
    .impact-arrow {
        transform: rotate(90deg);
    }
    
    .impact-before,
    .impact-after {
        width: 100%;
        padding: 24px;
    }
    
    .deliverables-preview {
        padding: 32px 20px;
    }
    
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .deliverable-photo {
        height: 130px;
    }
    
    .deliverable-card-body {
        padding: 20px 16px 24px;
        gap: 6px;
    }
    
    .deliverable-name {
        font-size: 0.95rem;
    }
    
    .deliverable-desc {
        font-size: 0.8rem;
    }
}

/* ===================================
   Kikagaku AI Training Section
   =================================== */

/* WHY KIKAGAKU Section */
.why-kikagaku {
    padding: 40px 0 40px;
    background: #fff;
}

.why-kikagaku-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.why-kikagaku-header {
    margin-bottom: 48px;
}

.why-kikagaku-header .section-label {
    color: var(--color-primary);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    position: relative;
    padding-bottom: 16px;
}

.why-kikagaku-header .section-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 16px auto 0;
}

.why-kikagaku-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.6;
    margin-top: 8px;
}

.why-kikagaku-title em {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-kikagaku-body {
    text-align: center;
}

.why-paragraph {
    font-size: 1.05rem;
    color: #475569;
    line-height: 2;
    margin-bottom: 24px;
}

.why-paragraph strong {
    font-weight: 700;
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-paragraph-lead {
    font-size: 1.15rem;
    color: #334155;
    font-weight: 500;
}

.why-paragraph-closing {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
    font-size: 1.1rem;
    color: #334155;
}

.pc-only {
    display: inline;
}

@media (max-width: 768px) {
    .why-kikagaku {
        padding: 32px 0 32px;
    }
    
    .why-kikagaku-body {
        text-align: center;
    }
    
    .pc-only {
        display: none;
    }
}

.kikagaku-training {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, #0d0d1a 100%);
}

/* 上段3列グリッド */
.kikagaku-points-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

/* 下段2列グリッド */
.kikagaku-points-bottom {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.kikagaku-points-bottom .point-card {
    flex: 0 1 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
}

/* ポイントカード共通 */
.point-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* 上段カードのビジュアル部分 */
.point-card-visual {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.point-card-visual-1 {
    background: #f8fafc;
}

.point-card-visual-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.point-card-visual-2 {
    background: #f8fafc;
}

.point-card-visual-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.point-card-visual-3 {
    background: #f8fafc;
}

.point-card-visual-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.point-card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(59, 130, 246, 0.3);
}

.point-card-visual-3 .point-card-number {
    color: rgba(236, 72, 153, 0.3);
}

/* 下段カードのビジュアル部分（画像付き） */
.point-card-visual-img {
    height: 200px;
    background: #f8fafc;
}

.point-card-visual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* カードコンテンツ */
.point-card-content {
    padding: 20px 24px 24px;
}

.point-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.point-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.highlight-text {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Google Partner Badge */
.google-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #e8f5e9 0%, #e3f2fd 100%);
    border: 1px solid rgba(52, 168, 83, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e7e34;
    text-decoration: none;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.google-partner-badge:hover {
    background: linear-gradient(135deg, #c8e6c9 0%, #bbdefb 100%);
    border-color: rgba(52, 168, 83, 0.5);
    box-shadow: 0 2px 8px rgba(52, 168, 83, 0.15);
}

.google-partner-badge svg {
    flex-shrink: 0;
    color: #34a853;
}

.google-partner-badge .external-icon {
    color: #94a3b8;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.google-partner-badge:hover .external-icon {
    opacity: 1;
    color: #1e7e34;
}

/* 下段カードのラベルスタイル調整 */
.point-card-wide .point-label {
    color: var(--color-primary);
    font-size: 0.75rem;
}

@media (max-width: 900px) {
    .kikagaku-points-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kikagaku-points-top .point-card:last-child {
        grid-column: span 2;
    }
    
    .kikagaku-points-bottom .point-card {
        flex: 0 1 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .kikagaku-points-top {
        grid-template-columns: 1fr;
    }
    
    .kikagaku-points-top .point-card:last-child {
        grid-column: span 1;
    }
    
    .kikagaku-points-bottom {
        flex-direction: column;
        align-items: center;
    }
    
    .kikagaku-points-bottom .point-card {
        flex: 0 1 100%;
        max-width: 100%;
    }
    
    .point-card-visual {
        height: 140px;
    }
    
    .point-card-visual-img {
        height: 180px;
    }
}

/* ===================================
   Track Record Section
   =================================== */
.track-record {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.track-record .section-title {
    color: #1a1a2e;
}

.track-record .section-label {
    color: var(--color-primary);
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.section-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 12px;
    text-align: center;
    opacity: 0.8;
}

.track-record-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

.track-record-content.track-record-content-full {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 60px auto 0;
}

/* Chart Section */
.track-record-chart {
    background: #f8fafc;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.chart-wrapper {
    position: relative;
}

.chart-label-box {
    position: absolute;
    top: 60px;
    left: 80px;
    background: #fff;
    border: 2px dashed #94a3b8;
    border-radius: 8px;
    padding: 16px 24px;
    z-index: 10;
    text-align: center;
}

.chart-label-sub {
    display: block;
    font-size: 0.875rem;
    color: #1e3a5f;
    font-weight: 500;
    margin-bottom: 4px;
}

.chart-label-main {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a5f;
    line-height: 1.1;
}

.chart-label-main .chart-label-unit {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a5f;
}

.chart-label-main small {
    font-size: 0.875rem;
    font-weight: 400;
    color: #64748b;
    margin-left: 2px;
}

.chart-container {
    position: relative;
    padding-left: 60px;
    padding-bottom: 50px;
}

.chart-y-axis {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 50px;
    width: 55px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 8px;
}

.chart-y-axis span {
    font-size: 0.625rem;
    color: #94a3b8;
    text-align: right;
    line-height: 1;
}

.chart-grid {
    position: absolute;
    left: 60px;
    right: 0;
    top: 0;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-grid-line {
    height: 1px;
    background: #e2e8f0;
    width: 100%;
}

.chart-grid-line-target {
    background: transparent;
    border-top: 2px dashed #3b82f6;
    height: 0;
}

.chart-label-old {
    position: absolute;
    top: 20%;
    left: 10%;
    background: #fff;
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius-md);
    padding: 16px 24px;
    text-align: center;
    z-index: 2;
}

.chart-label-text {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 4px;
}

.chart-label-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.chart-label-number small {
    font-size: 0.85rem;
    font-weight: 500;
}

.chart-bars {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 280px;
    gap: 12px;
    z-index: 5;
}

.chart-bar {
    position: relative;
    flex: 1;
    background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 3px 3px 0 0;
    height: calc(var(--height) * 2.8);
    max-height: 280px;
    min-width: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    transition: all 0.3s ease;
}

.chart-bar span {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6875rem;
    color: #64748b;
    text-align: center;
    white-space: nowrap;
    line-height: 1.3;
}

.chart-bar span small {
    display: block;
    font-size: 0.5625rem;
    color: #94a3b8;
}

.chart-bar-highlight {
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.chart-bar-highlight span {
    color: #1e3a5f;
    font-weight: 600;
}

.chart-bar:hover {
    opacity: 0.85;
}

/* Client Logos Grid */
.track-record-clients {
    padding: 20px;
}

/* Client Action Banner - New Design */
.client-action-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 12px 32px;
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #0891b2 100%);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(8, 145, 178, 0.3);
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.action-badge {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: white;
}

.action-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.action-text strong {
    background: linear-gradient(135deg, #fef08a 0%, #fde047 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.action-arrows {
    display: flex;
    gap: 8px;
}

.action-arrow {
    width: 18px;
    height: 18px;
    color: white;
    animation: arrow-bounce 1s ease-in-out infinite;
}

.action-arrow:nth-child(2) {
    animation-delay: 0.15s;
}

.action-arrow:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* Legacy client-hint styles (keep for backwards compatibility) */
.client-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 2px solid rgba(8, 145, 178, 0.3);
    border-radius: 100px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.15);
    animation: hint-pulse 2s ease-in-out infinite;
}

.client-hint::before {
    content: '👇';
    font-size: 1.2rem;
    animation: hint-bounce 1.5s ease-in-out infinite;
}

@keyframes hint-pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(8, 145, 178, 0.15);
    }
    50% {
        box-shadow: 0 4px 25px rgba(8, 145, 178, 0.35);
    }
}

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

.hint-icon {
    display: none;
}

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

.client-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 10px 8px;
    transition: all 0.3s ease;
    height: 70px;
    box-sizing: border-box;
}

.client-logo img {
    max-width: 130px;
    max-height: 45px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-logo:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}
.logo-scsk { color: #003399 !important; }

@media (max-width: 1024px) {
    .track-record-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .client-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .chart-bars {
        height: 200px;
    }
    
    .client-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .chart-label {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
    }
}

/* ===================================
   Problems Section
   =================================== */
.problems {
    padding: 24px 0 var(--section-padding);
    background: #ffffff;
}

/* DX人材訴求セクション */
.dx-talent-section {
    padding: 40px 0;
    background: #fff;
}

.dx-talent-appeal {
    text-align: center;
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.dx-talent-header .section-label {
    display: inline-block;
    margin-bottom: 16px;
}

.dx-talent-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    line-height: 1.4;
}

.dx-talent-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dx-talent-description {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .dx-talent-section {
        padding: 32px 0;
    }
    
    .dx-talent-appeal {
        padding: 36px 24px;
    }
    
    .dx-talent-title {
        font-size: 1.75rem;
    }
    
    .dx-talent-description {
        font-size: 1rem;
    }
}

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

.problems-grid.problems-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.4s var(--ease-out-quart);
}

.problem-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 145, 178, 0.08);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    margin-bottom: 24px;
}

.problem-image {
    width: 100%;
    height: 140px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.problem-card:hover .problem-image img {
    transform: scale(1.05);
    opacity: 1;
}

.problem-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.problem-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

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

@media (max-width: 640px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }
    .problems-grid.problems-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Solution Showcase */
.problems .section-description {
    max-width: 700px;
    margin: 16px auto 0;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.solution-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--color-bg-elevated);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.solution-showcase-reverse {
    direction: rtl;
}

.solution-showcase-reverse > * {
    direction: ltr;
}

.solution-content {
    padding: 20px 0;
}

.solution-icon {
    display: inline-block;
    font-size: 1.5rem;
    background: rgba(8, 145, 178, 0.08);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.solution-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.solution-description {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.solution-prompts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prompt-item {
    background: rgba(8, 145, 178, 0.06);
    border-left: 3px solid var(--color-primary);
    padding: 12px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.5;
}

/* Gemini Window Mockup */
.solution-mockup {
    position: relative;
}

.solution-mockup-video {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.solution-mockup-video .demo-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

/* ===================================
   Solution Video Hero Layout
   動画をメインにしたレイアウト
   =================================== */
.solution-video-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-top: 60px;
    padding: 36px 40px 24px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

.solution-video-header {
    text-align: center;
    max-width: 600px;
}

.solution-badge {
    display: inline-block;
    font-size: 1rem;
    background: rgba(8, 145, 178, 0.1);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    font-weight: 500;
}

.solution-video-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.solution-video-title em {
    color: var(--color-primary);
    font-style: normal;
}

.solution-video-subtitle {
    font-size: 1rem;
    color: var(--color-text-dim);
    margin: 0;
}

.solution-video-main {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-frame {
    position: relative;
    width: 100%;
    background: #1a1a2e;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.video-frame-header {
    background: #16213e;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-frame-title {
    margin-left: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.demo-video-large {
    width: 100%;
    display: block;
    min-height: 400px;
    max-height: 500px;
    object-fit: contain;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.video-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

.solution-video-testimonial {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.testimonial-avatar {
    font-size: 2rem;
    background: rgba(8, 145, 178, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 4px;
}

.testimonial-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-dim);
}

.testimonial-content .highlight {
    color: var(--color-primary);
    font-weight: 600;
}

/* Responsive for Video Hero */
@media (max-width: 768px) {
    .solution-video-hero {
        padding: 24px 24px 16px 24px;
        margin-top: 40px;
    }
    
    .solution-video-title {
        font-size: 1.4rem;
    }
    
    .demo-video-large {
        min-height: 250px;
        max-height: 350px;
    }
    
    .solution-video-testimonial {
        flex-direction: column;
        text-align: center;
    }
}

/* Video Main Layout */
.solution-showcase-video-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.solution-header-compact {
    text-align: center;
    max-width: 600px;
}

.solution-header-compact .solution-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.solution-header-compact h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.solution-header-compact h3 em {
    color: var(--color-primary);
    font-style: normal;
}

.solution-header-compact .solution-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.solution-mockup-video-large {
    width: 100%;
    max-width: 900px;
}

.solution-mockup-video-large .demo-video {
    width: 100%;
    height: auto;
}

/* Video Player with Play Button */
.video-player-container {
    position: relative;
    cursor: pointer;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-lg);
    transition: background 0.3s ease;
}

.video-player-container:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-overlay .play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-player-container:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.video-play-overlay .play-text {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-disclaimer {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    padding: 4px 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    z-index: 10;
}

.video-disclaimer-dark {
    color: rgba(255, 255, 255, 0.95);
    bottom: 15px;
}

/* Video Solution Styles */
.solution-video {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-container {
    background: #1a1a2e;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-header {
    background: #16213e;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.video-dot.red { background: #ff5f56; }
.video-dot.yellow { background: #ffbd2e; }
.video-dot.green { background: #27ca40; }

.video-title {
    margin-left: 12px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.demo-video {
    width: 100%;
    display: block;
    min-height: 320px;
    max-height: 450px;
    object-fit: contain;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* 事務業務サポートデモの動画をより大きく表示 */
.solution-showcase-reverse .solution-video .demo-video {
    min-height: 350px;
    max-height: 500px;
}

/* Placeholder when video is not available */
.video-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.video-placeholder .placeholder-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.video-placeholder p {
    font-size: 0.9rem;
    margin: 0;
}

.video-container {
    position: relative;
}

/* Hide placeholder when video is playing */
.demo-video:not(:empty) ~ .video-placeholder {
    display: none;
}

.video-caption {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(8, 145, 178, 0.06);
    border: 1px solid rgba(8, 145, 178, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
}

.caption-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.caption-text strong {
    display: block;
    color: var(--color-text-primary);
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.caption-text p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .demo-video {
        max-height: 250px;
    }
    
    .video-caption {
        padding: 12px;
    }
    
    .caption-icon {
        font-size: 1.5rem;
    }
}

.gemini-window {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.gemini-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.gemini-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gemini-icon {
    font-size: 1.25rem;
}

.gemini-title {
    display: flex;
    flex-direction: column;
}

.gemini-title strong {
    font-size: 0.9375rem;
    color: #1a1a1a;
}

.gemini-title small {
    font-size: 0.75rem;
    color: #666;
}

.gemini-chat {
    padding: 20px;
    background: #fff;
}

.chat-bubble {
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    line-height: 1.6;
}

.user-bubble {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
    margin-left: 20%;
    border-bottom-right-radius: 4px;
}

.ai-bubble {
    background: #f5f5f5;
    color: #333;
    border-bottom-left-radius: 4px;
}

.ai-response p {
    margin-bottom: 12px;
}

.todo-section,
.analysis-result,
.meeting-summary,
.action-items {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    margin: 12px 0;
}

.todo-title,
.action-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 0.8125rem;
}

.ai-response ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-response li {
    padding: 6px 0;
    font-size: 0.8125rem;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.ai-response li:last-child {
    border-bottom: none;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: #666;
    font-size: 0.8125rem;
}

.stat-value {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.875rem;
}

.stat-value.positive {
    color: #16a34a;
}

.action-buttons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.action-btn {
    background: #e3f2fd;
    color: #1565c0;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: #bbdefb;
}

.chat-testimonial {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(217, 70, 239, 0.05));
    border-radius: 12px;
    margin-top: 12px;
}

.testimonial-avatar {
    font-size: 1.5rem;
}

.testimonial-text strong {
    display: block;
    font-size: 0.8125rem;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.testimonial-text p {
    font-size: 0.8125rem;
    color: #666;
    margin: 0;
}

/* Code Preview */
.code-preview {
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    margin: 12px 0;
}

.code-header {
    background: #2d2d2d;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.code-dot.red { background: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #27ca40; }

.code-filename {
    margin-left: 8px;
    font-size: 0.75rem;
    color: #999;
}

.code-body {
    padding: 12px;
}

.code-body code {
    display: block;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.7rem;
    color: #9cdcfe;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .solution-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 30px;
    }
    
    .solution-showcase-reverse {
        direction: ltr;
    }
}

@media (max-width: 640px) {
    .solution-showcase {
        padding: 24px;
        margin-top: 40px;
    }
    
    .solution-content h3 {
        font-size: 1.25rem;
    }
    
    .user-bubble {
        margin-left: 0;
    }
}

/* ===================================
   Program Section
   =================================== */
/* Individual Programs Group */
.individual-programs-group {
    position: relative;
}

/* Individual Programs Heading */
.individual-programs-heading {
    padding: 16px 0 8px;
    background: transparent;
}

.individual-programs-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.individual-programs-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-text-dim);
    text-transform: uppercase;
    margin-bottom: 8px;
    padding: 4px 16px;
    border: 1px solid var(--color-border);
    border-radius: 50px;
}

.individual-programs-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin-top: 8px;
    margin-bottom: 10px;
}

.individual-programs-description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .individual-programs-heading {
        padding: 12px 0 4px;
    }

    .individual-programs-description br {
        display: none;
    }
}

.program {
    padding: 24px 0 0;
    background: var(--color-bg-elevated);
    position: relative;
}

@media (max-width: 768px) {
    .program {
        padding: 16px 0 0;
    }
}

/* Entry Program: compact layout to fit 1 page on PC */
/* Entry Program: compact layout to fit 1 page on PC */
#program .program-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

#program .program-image {
    aspect-ratio: 16/5;
}

#program .program-content {
    padding: 12px 14px;
}

#program .program-content h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

#program .program-content > p {
    font-size: 0.78rem;
    margin-bottom: 6px;
    line-height: 1.5;
}

#program .program-goals {
    padding: 6px 10px;
    margin-bottom: 4px;
}

#program .program-deliverables {
    padding: 5px 10px;
    margin-bottom: 4px;
    min-height: auto;
}

#program .program-list {
    margin-bottom: 0;
    gap: 2px;
}

#program .program-list li {
    font-size: 0.7rem;
}

#program .program-meta {
    padding: 2px 0;
}

#program .program-price {
    margin-top: 4px;
    padding: 6px;
}

#program .program-actions {
    margin-top: 6px;
    margin-bottom: 4px;
}

#program .subsidy-footnote {
    margin-top: 8px;
    font-size: 0.68rem;
    padding-bottom: 0;
}

/* Entry Program: revert compact styles on mobile */
@media (max-width: 768px) {
    #program .program-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    #program .program-image {
        aspect-ratio: 16/9;
    }

    #program .program-content {
        padding: 20px;
    }

    #program .program-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    #program .program-content > p {
        font-size: 0.9rem;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    #program .program-goals {
        padding: 10px 14px;
        margin-bottom: 10px;
    }

    #program .program-deliverables {
        padding: 10px 14px;
        margin-bottom: 10px;
    }

    #program .program-list {
        gap: 4px;
    }

    #program .program-list li {
        font-size: 0.82rem;
    }

    #program .program-meta {
        padding: 8px 0;
    }

    #program .program-price {
        margin-top: 8px;
        padding: 10px;
    }

    #program .program-actions {
        margin-top: 10px;
        margin-bottom: 8px;
    }

    #program .subsidy-footnote {
        margin-top: 16px;
        font-size: 0.7rem;
        text-align: left;
    }
}

.program .section-label {
    color: #34a853;
}

.program .section-title em {
    background: linear-gradient(135deg, #2d9348 0%, #34a853 50%, #4285f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program .section-description {
    max-width: 600px;
    margin: 12px auto 0;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Program Toggle Button */
.program-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 0;
    padding: 10px 24px;
    background: white;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.program-toggle-btn:hover {
    background: var(--color-primary);
    color: white;
}

.program-toggle-icon {
    transition: transform 0.3s ease;
}

.program-toggle-btn[aria-expanded="true"] .program-toggle-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .program-toggle-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
        margin-top: 8px;
        margin-bottom: 0;
    }
}

/* Program Collapsible */
.program-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.program-collapsible.is-open {
    opacity: 1;
    overflow: visible;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.program-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease-out-quart);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.program-image {
    position: relative;
    aspect-ratio: 16/8;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-quart);
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: white;
    background: var(--color-text);
    padding: 8px 16px;
    border-radius: 100px;
}

.program-badge-accent {
    background: var(--color-primary);
}

.program-badge-premium {
    background: var(--gradient-primary);
}

.program-badge-workspace {
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC04, #EA4335);
}

.program-badge-gemini {
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
}

.program-badge-advanced {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.program-badge-coming-soon {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
}

/* Coming Soon Card Style */
.program-card-coming-soon {
    opacity: 0.75;
    position: relative;
}

.program-card-coming-soon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    border-radius: inherit;
}

.program-card-coming-soon .program-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.program-coming-soon-notice {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1), rgba(156, 163, 175, 0.1));
    border: 1px solid rgba(107, 114, 128, 0.3);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 16px;
    text-align: center;
}

.program-coming-soon-notice span {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-coming-soon-notice p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.program-content {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* プラットフォームラベル */
.program-platform {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4285f4;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(52, 168, 83, 0.1));
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    text-align: center;
}

.program-platform-bootcamp {
    color: #ea4335;
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.1), rgba(251, 188, 4, 0.1));
}

.program-platform-basic {
    color: #34a853;
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.1), rgba(66, 133, 244, 0.1));
}

.program-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    min-height: 2.6em;
    line-height: 1.3;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-content > p {
    font-size: 0.825rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    line-height: 1.5;
    min-height: 3.5em;
}

/* Program Goals - ゴール */
.program-goals {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.12) 0%, rgba(6, 182, 212, 0.15) 100%);
    border: 2px solid rgba(8, 145, 178, 0.3);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
    min-height: 75px;
}

.program-goals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.goals-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.goals-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.goal-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-heading);
    background: #ffffff;
    padding: 6px 10px;
    border-radius: 100px;
    box-shadow: 0 2px 6px rgba(8, 145, 178, 0.15);
    border: 1px solid rgba(8, 145, 178, 0.2);
}

/* Program Deliverables - 成果物 */
.program-deliverables {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    margin-bottom: 8px;
    min-height: 58px;
}

.deliverables-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.deliverables-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.deliverable-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text);
    background: #ffffff;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.program-list {
    list-style: none;
    margin-bottom: 0;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 10px;
    align-content: start;
}

.program-list-single {
    grid-template-columns: 1fr;
    gap: 4px;
}

.program-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--color-text);
    padding: 4px 0;
    border-bottom: none;
}

.program-list li:last-child {
    border-bottom: none;
}

.program-list li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.7rem;
}

.program-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 10px;
}

/* Program Price - 価格表示 */
.program-price {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.program-price-regular,
.program-price-subsidy {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.program-price-label {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--color-text-dim);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
    min-height: 32px;
}

.program-price-value {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    flex-shrink: 0;
}

.program-price-regular .program-price-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.program-price-subsidy .program-price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent);
}

.program-price-subsidy .program-price-label {
    color: var(--color-accent);
}

/* Program Actions - 詳細を見る & 検討する */
.program-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 32px;
}

.program-actions .program-cart-btn {
    width: 100%;
    margin-top: 0;
}

/* モバイル時はボタンを縦並びに */
@media (max-width: 480px) {
    .program-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .program-actions .program-cart-btn {
        width: 100%;
    }
}

.program-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-dim);
}

/* Program Enterprise Link */
/* Program Enterprise Section (Standalone) */
.program-enterprise-section {
    padding: 30px 0 60px;
    background: var(--color-bg-elevated);
}

.program-enterprise-section .program-enterprise {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.program-enterprise {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--color-border);
}

.program-enterprise-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.06) 0%, rgba(99, 102, 241, 0.04) 100%);
    border: 1px solid rgba(8, 145, 178, 0.15);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.program-enterprise-content:hover {
    /* ホバー効果なし */
}

.program-enterprise-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: #fff;
}

.program-enterprise-text {
    flex: 1;
}

.program-enterprise-text h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.program-enterprise-text p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.program-enterprise-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary-light);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.program-enterprise-link:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateX(4px);
}

.program-enterprise-link svg {
    transition: transform 0.3s ease;
}

.program-enterprise-link:hover svg {
    transform: translate(2px, -2px);
}

@media (max-width: 768px) {
    .program-enterprise-content {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .program-enterprise-text {
        text-align: center;
    }
}

@media (max-width: 1200px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .program-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Subsidy Footnote */
.subsidy-footnote {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 32px;
    padding: 0 20px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .subsidy-footnote {
        font-size: 0.7rem;
        margin-top: 24px;
        text-align: left;
    }
}

/* ===================================
   Gemini Specialized Program Section
   =================================== */
.gemini-program {
    padding: 24px 0 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
}

/* Advanced Workshop Section */
.advanced-workshop {
    padding: 24px 0 0;
    background: linear-gradient(135deg, #fff5f0 0%, #fff0e6 50%, #fffbf0 100%);
}

.advanced-workshop .section-label {
    color: #ea4335;
}

.advanced-workshop .section-title em {
    background: linear-gradient(135deg, #ea4335 0%, #fbbc04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .advanced-workshop {
        padding: 16px 0 0;
    }
}

/* Advanced Gemini Programs Group */
.gemini-advanced-group {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(8, 145, 178, 0.15);
}

.gemini-advanced-header {
    text-align: center;
    margin-bottom: 50px;
}

.gemini-advanced-header-compact {
    margin-bottom: 30px;
}

.gemini-advanced-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 100px;
    margin-bottom: 20px;
}

.gemini-advanced-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.gemini-advanced-title em {
    font-style: normal;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gemini-advanced-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .gemini-advanced-group {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .gemini-advanced-title {
        font-size: 1.5rem;
    }
    
    .gemini-advanced-header {
        margin-bottom: 40px;
    }
}

.gemini-program .section-description {
    max-width: 600px;
    margin: 20px auto 0;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.gemini-program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gemini-program-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gemini-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.gemini-program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.gemini-program-icon svg {
    stroke: white;
}

.gemini-program-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.gemini-program-card > p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.gemini-program-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gemini-program-features li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.gemini-program-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
}

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

@media (max-width: 768px) {
    .gemini-program {
        padding: 16px 0 12px;
    }
    
    .gemini-program-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }
    
    .gemini-program-card {
        padding: 30px 24px;
    }
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: 80px 0;
    background: var(--color-bg);
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-card-reverse {
    direction: rtl;
}

.feature-card-reverse > * {
    direction: ltr;
}

.feature-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/10;
}

.feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    max-width: 480px;
}

.feature-number {
    display: block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.feature-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.9;
}

@media (max-width: 768px) {
    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        gap: 50px;
        margin-top: 40px;
    }
    
    .feature-card,
    .feature-card-reverse {
        grid-template-columns: 1fr;
        gap: 24px;
        direction: ltr;
    }
    
    .feature-visual {
        aspect-ratio: 16/9;
    }
    
    .feature-content h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .feature-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .feature-number {
        margin-bottom: 10px;
    }
}

/* ===================================
   Use Cases Section
   =================================== */
.use-cases {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.use-cases .section-description {
    max-width: 700px;
    margin: 16px auto 0;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.use-case-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(99, 102, 241, 0.08));
    border-radius: var(--radius-md);
    color: var(--color-primary);
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.use-case-description {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.use-case-example {
    background: rgba(8, 145, 178, 0.06);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 16px;
}

.example-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.example-text {
    font-size: 0.8125rem;
    color: var(--color-text);
    line-height: 1.5;
}

.use-case-result {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.result-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

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

@media (max-width: 640px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-card {
        padding: 24px;
    }
}

/* ===================================
   Lecturers Section
   =================================== */
.lecturers {
    padding: clamp(40px, 5vw, 70px) 0;
    background: #ffffff;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 24px auto 0;
}

/* Lecturers Grid Layout */
.lecturers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.lecturer-card-compact {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.lecturer-card-compact:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.lecturer-image-compact {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--color-border);
    transition: border-color 0.3s ease;
}

.lecturer-card-compact:hover .lecturer-image-compact {
    border-color: var(--color-primary);
}

.lecturer-image-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lecturer-card-compact:hover .lecturer-image-compact img {
    transform: scale(1.05);
}

.lecturer-name-compact {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.lecturer-title-compact {
    font-size: 0.9375rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.lecturer-cert {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.lecturer-bio-short {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    text-align: left;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

.lecturer-detail-btn {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lecturer-detail-btn:hover {
    background: var(--color-primary);
    color: white;
}

/* Lecturer Modal */
.lecturer-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lecturer-modal.active {
    opacity: 1;
    visibility: visible;
}

.lecturer-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.lecturer-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.lecturer-modal.active .lecturer-modal-content {
    transform: translateY(0);
}

.lecturer-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lecturer-modal-close:hover {
    background: var(--color-bg-hover);
    color: var(--color-text);
}

.lecturer-modal-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border-light);
}

.lecturer-modal-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.lecturer-modal-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.lecturer-modal-title {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.lecturer-modal-cert {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.lecturer-modal-bio p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.lecturer-modal-bio p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .lecturers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .lecturer-modal-content {
        padding: 30px;
    }
    
    .lecturer-modal-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
   Results Section
   =================================== */
.results {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    pointer-events: none;
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.result-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    transition: all 0.4s var(--ease-out-quart);
    box-shadow: var(--shadow-sm);
}

.result-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.result-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.result-unit {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
}

.result-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.result-description {
    font-size: 0.9375rem;
    color: var(--color-text-dim);
}

@media (max-width: 768px) {
    .results-showcase {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--color-bg-elevated);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all 0.4s var(--ease-out-quart);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 32px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-text);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    color: var(--color-text);
}

.author-title {
    font-size: 0.875rem;
    color: var(--color-text-dim);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    padding: clamp(40px, 5vw, 70px) 0;
    background: var(--color-bg);
}

.pricing .container {
    max-width: 1400px;
}

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

.pricing-grid-4col {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.4s var(--ease-out-quart);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 推奨プランバッジ */
.pricing-card-recommended {
    border-color: var(--color-primary);
    border-width: 2px;
    box-shadow: 0 4px 24px rgba(8, 145, 178, 0.12), 0 0 0 1px rgba(8, 145, 178, 0.08);
}

.pricing-recommended-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.3);
}

.pricing-grid-4col .pricing-card {
    padding: 20px 16px;
}

.pricing-grid-4col .pricing-level {
    font-size: 0.7rem;
    padding: 4px 12px;
    margin-bottom: 12px;
}

.pricing-grid-4col .pricing-badge {
    font-size: 0.65rem;
    padding: 6px 16px;
    top: -10px;
}

.pricing-grid-4col .pricing-header {
    margin-bottom: 10px;
    min-height: 100px;
}

.pricing-grid-4col .pricing-header p {
    font-size: 0.75rem;
    padding: 8px 14px;
    margin-bottom: 10px;
    margin-top: 0;
    box-shadow: 0 3px 12px rgba(8, 145, 178, 0.25);
}

.pricing-grid-4col .pricing-meta {
    padding-top: 8px;
    margin-top: auto;
}

.pricing-grid-4col .pricing-duration {
    font-size: 0.75rem;
}

.pricing-grid-4col .pricing-price {
    gap: 8px;
    margin-top: 10px;
    padding: 10px;
}

.pricing-grid-4col .pricing-price-label {
    font-size: 0.6rem;
}

.pricing-grid-4col .pricing-price-regular .pricing-price-value {
    font-size: 1rem;
}

.pricing-grid-4col .pricing-price-subsidy .pricing-price-value {
    font-size: 1rem;
}

.pricing-grid-4col .pricing-contents {
    margin-bottom: 12px;
    min-height: auto;
    flex-grow: 1;
}

.pricing-grid-4col .pricing-contents h4 {
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.pricing-grid-4col .pricing-contents li {
    font-size: 0.8rem;
    padding: 8px 0;
    padding-left: 16px;
    line-height: 1.5;
}

.pricing-grid-4col .pricing-contents li::before {
    top: 11px;
    width: 5px;
    height: 5px;
}

.pricing-grid-4col .pricing-note-small {
    font-size: 0.65rem;
    margin-top: 8px;
}

/* Pricing Course Platform - パッケージ内容のプラットフォーム情報 */
.pricing-course-platform {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: #4285f4;
    letter-spacing: 0.02em;
    margin-bottom: 3px;
}

.pricing-course-platform-bootcamp {
    color: #ea4335;
}

.pricing-course-platform-basic {
    color: #34a853;
}

.pricing-grid-4col .pricing-goals {
    padding: 16px 18px;
    margin-bottom: 16px;
    min-height: 90px;
}

.pricing-grid-4col .pricing-goals-label {
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.pricing-grid-4col .pricing-goal-item {
    font-size: 0.9rem;
    white-space: normal;
    line-height: 1.5;
}

.pricing-grid-4col .pricing-deliverables {
    padding: 14px 16px;
    margin-bottom: 16px;
    min-height: 100px;
}

.pricing-grid-4col .pricing-deliverables-label {
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.pricing-grid-4col .pricing-deliverable-item {
    font-size: 0.9rem;
    padding: 6px 14px;
}

.pricing-grid-4col .pricing-actions {
    gap: 10px;
}

.pricing-grid-4col .pricing-cart-btn {
    padding: 12px 16px;
    font-size: 0.85rem;
}

.pricing-grid-4col .btn {
    padding: 12px 16px;
    font-size: 0.85rem;
}

/* Ultra compact for 4-column layout */
@media (min-width: 1200px) {
    .pricing-grid-4col .pricing-card {
        padding: 18px 14px;
    }
    
    .pricing-grid-4col .pricing-level {
        font-size: 0.65rem;
        padding: 3px 10px;
        margin-bottom: 10px;
    }
    
    .pricing-grid-4col .pricing-header {
        margin-bottom: 8px;
        min-height: 95px;
    }
    
    .pricing-grid-4col .pricing-header h3 {
        font-size: 1.2rem;
        margin-bottom: 4px;
        font-weight: 700;
    }
    
    .pricing-grid-4col .pricing-header p {
        font-size: 0.65rem;
        padding: 6px 10px;
        margin-bottom: 8px;
        margin-top: 0;
        box-shadow: 0 2px 8px rgba(8, 145, 178, 0.2);
    }
    
    .pricing-grid-4col .pricing-meta {
        padding-top: 6px;
    }
    
    .pricing-grid-4col .pricing-duration {
        font-size: 0.7rem;
    }
    
    .pricing-grid-4col .pricing-price {
        gap: 6px;
        margin-top: 8px;
        padding: 8px;
    }
    
    .pricing-grid-4col .pricing-price-label {
        font-size: 0.55rem;
    }
    
    .pricing-grid-4col .pricing-price-regular .pricing-price-value {
        font-size: 0.9rem;
    }
    
    .pricing-grid-4col .pricing-price-subsidy .pricing-price-value {
        font-size: 0.9rem;
    }
    
    .pricing-grid-4col .pricing-contents {
        margin-bottom: 8px;
        min-height: 140px;
        flex-grow: 1;
    }
    
    .pricing-grid-4col .pricing-contents h4 {
        font-size: 0.65rem;
        margin-bottom: 6px;
    }
    
    .pricing-grid-4col .pricing-contents li {
        font-size: 0.7rem;
        padding: 5px 0;
        padding-left: 12px;
        line-height: 1.3;
    }
    
    .pricing-grid-4col .pricing-contents li::before {
        top: 9px;
        width: 4px;
        height: 4px;
    }
    
    .pricing-grid-4col .pricing-note-small {
        font-size: 0.6rem;
        margin-top: 6px;
    }
    
    .pricing-grid-4col .pricing-goals {
        padding: 10px 12px;
        margin-bottom: 10px;
        min-height: 60px;
    }
    
    .pricing-grid-4col .pricing-goals-label {
        font-size: 0.6rem;
        margin-bottom: 5px;
    }
    
    .pricing-grid-4col .pricing-goal-item {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .pricing-grid-4col .pricing-deliverables {
        padding: 6px 8px;
        margin-bottom: 10px;
        min-height: 60px;
    }
    
    .pricing-grid-4col .pricing-deliverables-label {
        font-size: 0.55rem;
        margin-bottom: 4px;
    }
    
    .pricing-grid-4col .pricing-deliverable-item {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .pricing-grid-4col .pricing-actions {
        gap: 8px;
    }
    
    .pricing-grid-4col .pricing-cart-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .pricing-grid-4col .btn {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
}

/* ホバーエフェクト無効化 */
.pricing-card:hover {
    border-color: var(--color-border);
    transform: none;
    box-shadow: var(--shadow-sm);
}

.pricing-card-featured {
    border-color: var(--color-primary);
    transform: scale(1.02);
    background: linear-gradient(180deg, rgba(8, 145, 178, 0.05) 0%, #ffffff 100%);
}

.pricing-card-featured:hover {
    transform: scale(1.02) translateY(-8px);
    border-color: var(--color-primary);
}

/* Pricing Level Badge */
.pricing-level {
    display: inline-block;
    background: var(--color-bg);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    border: 1px solid var(--color-primary);
}

.pricing-level-advanced {
    background: var(--color-primary);
    color: white;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 8px 24px;
    border-radius: 100px;
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.pricing-grid-4col .pricing-header h3 {
    font-size: 1.35rem;
}

.pricing-header p {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 12px;
    margin-top: 0;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
    letter-spacing: 0.02em;
}

/* Pricing Meta - Duration */
.pricing-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
}

.pricing-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

.pricing-duration svg {
    color: var(--color-primary);
}

/* Pricing Price - 価格表示 */
.pricing-price {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.pricing-price-regular,
.pricing-price-subsidy {
    flex: 1;
    text-align: center;
}

.pricing-price-label {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-dim);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-price-regular .pricing-price-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.pricing-price-subsidy .pricing-price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.pricing-price-subsidy .pricing-price-label {
    color: var(--color-accent);
}

/* Legacy pricing styles (keep for backwards compatibility) */
.pricing-price {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.price-currency {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    vertical-align: top;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.pricing-grid-4col .price-amount {
    font-size: 1.625rem;
}

.price-period {
    font-size: 0.8125rem;
    color: var(--color-text-dim);
    margin-left: 4px;
    display: block;
    margin-top: 4px;
}

/* Pricing Subsidy (助成金適用価格) */
.pricing-subsidy {
    text-align: center;
    margin-bottom: 14px;
}

.subsidy-label {
    display: block;
    font-size: 0.7rem;
    color: var(--color-accent);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subsidy-price {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent);
}

.pricing-grid-4col .pricing-subsidy {
    margin-bottom: 10px;
}

.pricing-grid-4col .subsidy-label {
    font-size: 0.6rem;
}

.pricing-grid-4col .subsidy-price {
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.9375rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

/* Pricing Contents - Package Details */
.pricing-contents {
    text-align: left;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pricing-contents h4 {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-contents li {
    font-size: 0.8125rem;
    color: var(--color-text);
    padding: 8px 0;
    padding-left: 16px;
    position: relative;
    border-bottom: 1px solid var(--color-border-light);
    line-height: 1.5;
}

.pricing-contents li:last-child {
    border-bottom: none;
}

.pricing-contents li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.pricing-note-small {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    margin-top: 8px;
    font-style: italic;
}

/* Pricing Output - Deliverables (Legacy) */
.pricing-output {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
    text-align: left;
}

.pricing-output h4 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-dim);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-output p {
    font-size: 0.875rem;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.5;
}

/* Pricing Goals - 強調デザイン */
.pricing-goals {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.15) 0%, rgba(6, 182, 212, 0.2) 100%);
    border: 2px solid rgba(8, 145, 178, 0.4);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 16px;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 70px;
}

.pricing-goals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.pricing-goals-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-goals-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-goal-item {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
    white-space: nowrap;
}

/* Pricing Deliverables - 研修プログラムと同様のデザイン */
.pricing-deliverables {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    margin-bottom: 16px;
    text-align: left;
    min-height: 70px;
}

.pricing-deliverables-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.pricing-deliverables-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pricing-deliverable-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Pricing Actions */
.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.pricing-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cart-btn:hover {
    background: #e2e8f0;
    border-color: var(--color-text-dim);
}

.pricing-cart-btn.added {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.pricing-cart-btn.added:hover {
    background: #ef4444;
    border-color: #ef4444;
}

.pricing-cart-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.pricing-actions .btn {
    width: 100%;
    justify-content: center;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.pricing-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 32px;
    padding: 0 20px;
    line-height: 1.6;
}

@media (min-width: 1200px) {
    .pricing .container {
        max-width: 1400px;
    }
    
    .pricing-grid-4col {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 1199px) {
    .pricing-grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card-featured {
        transform: none;
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-grid-4col {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* ===================================
   Subsidy Section
   =================================== */
.subsidy {
    padding: clamp(40px, 5vw, 70px) 0;
    background: #ffffff;
}

.subsidy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.subsidy-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 24px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.subsidy-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.subsidy-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    text-align: center;
}

.subsidy-card-title {
    text-align: center;
}

.subsidy-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.15), rgba(8, 145, 178, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.subsidy-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.subsidy-rate {
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    font-weight: 600;
}

.subsidy-rate .highlight {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.subsidy-description {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.subsidy-content-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    margin-bottom: 12px;
    align-items: center;
}

.subsidy-points {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0;
}

.subsidy-points li {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: none;
}

.subsidy-points li:last-child {
    border-bottom: none;
}

.subsidy-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.subsidy-subtitle {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.subsidy-table-wrapper {
    overflow-x: auto;
}

.subsidy-table {
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.subsidy-table th,
.subsidy-table td {
    padding: 8px 16px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.subsidy-table thead th {
    background: rgba(8, 145, 178, 0.08);
    color: var(--color-text-secondary);
    font-weight: 600;
    font-size: 0.75rem;
}

.subsidy-table tbody tr:nth-child(odd) {
    background: rgba(8, 145, 178, 0.03);
}

.subsidy-table-label {
    font-weight: 600;
    color: var(--color-primary);
    text-align: left !important;
    font-size: 0.75rem;
}

.subsidy-example {
    background: #f8fafc;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
}

.subsidy-example-header {
    background: rgba(8, 145, 178, 0.08);
    color: var(--color-text-secondary);
    padding: 10px 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}

.subsidy-example-header span {
    color: var(--color-primary);
    margin-right: 4px;
}

.subsidy-example-content {
    padding: 16px;
    color: var(--color-text-primary);
}

.subsidy-example-calc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.subsidy-example-item {
    text-align: center;
}

.subsidy-example-label {
    display: block;
    font-size: 0.7rem;
    color: var(--color-primary);
    margin-bottom: 4px;
    font-weight: 600;
}

.subsidy-example-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.subsidy-example-total .subsidy-example-label {
    font-size: 0.65rem;
    color: var(--color-primary);
}

.subsidy-example-total .subsidy-example-value {
    font-size: 1.375rem;
}

.subsidy-example-operator {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text-muted);
}

.subsidy-example-result {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.subsidy-example-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.subsidy-formula-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.subsidy-formula-label {
    font-size: 0.75rem;
    color: var(--color-text-tertiary);
}

.subsidy-formula-result .subsidy-formula-label {
    color: var(--color-primary);
    font-weight: 600;
}

.subsidy-formula-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.subsidy-formula-per-person {
    font-size: 0.8125rem;
    color: var(--color-text-tertiary);
    margin-left: 8px;
    align-self: center;
    margin-top: 16px;
}

.subsidy-formula-operator {
    font-size: 1rem;
    color: var(--color-text-tertiary);
    margin-top: 16px;
}

.subsidy-formula-secondary .subsidy-formula-value {
    font-weight: 400;
    color: var(--color-text-secondary);
}

.subsidy-example-final {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.subsidy-example-per-person {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
}

.subsidy-example-notes {
    padding: 10px 16px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.subsidy-example-notes p {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.subsidy-notes {
    background: rgba(8, 145, 178, 0.04);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 12px;
}

.subsidy-notes p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

.subsidy-notes p + p {
    margin-top: 4px;
}

.subsidy-source {
    text-align: right;
}

.subsidy-source a {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.subsidy-source a:hover {
    color: var(--color-primary);
}

.subsidy-source svg {
    flex-shrink: 0;
}

/* 助成金 緊急性バナー */
.subsidy-urgency-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(239, 68, 68, 0.06));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    border-left: 4px solid #f59e0b;
}

.subsidy-urgency-banner .urgency-icon {
    flex-shrink: 0;
    color: #f59e0b;
}

.subsidy-urgency-banner .urgency-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text);
}

.subsidy-urgency-banner .urgency-text strong {
    color: #dc2626;
    font-weight: 700;
}

.subsidy-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.06), rgba(99, 102, 241, 0.04));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(8, 145, 178, 0.2);
}

.subsidy-cta p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.subsidy-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .subsidy-grid {
        grid-template-columns: 1fr;
    }
    
    .subsidy-card {
        padding: 24px 20px;
    }
    
    .subsidy-card-header {
        gap: 8px;
    }
    
    .subsidy-content-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .subsidy-table {
        width: 100%;
    }
    
    .subsidy-cta {
        padding: 30px 20px;
    }
}

/* ===================================
   Case Studies Section
   =================================== */
.case-studies {
    padding: 80px 0;
    background: linear-gradient(135deg, #0891b2 0%, #0284c7 50%, #0369a1 100%);
    color: #ffffff;
}

.case-studies-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
}

.case-studies-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.case-study-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.case-study-image {
    height: 220px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 24px;
}

.case-study-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.case-study-company {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(8, 145, 178, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.case-study-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-image {
        height: 180px;
    }
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--color-bg-elevated);
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--color-text-dim);
    transition: all 0.3s ease;
}

.faq-question:hover span {
    color: var(--color-primary);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-quart);
}

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

.faq-answer p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.9;
}

@media (max-width: 768px) {
    .faq {
        padding: 40px 0;
    }

    .faq-question {
        gap: 12px;
        padding: 20px 0;
    }

    .faq-question span {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 100% 100% at 50% 100%, rgba(8, 145, 178, 0.08) 0%, transparent 50%),
        var(--color-bg-elevated);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(8, 145, 178, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 145, 178, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center bottom, black, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center bottom, black, transparent 70%);
}

.cta-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.cta-title em {
    font-style: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 100px;
}

.cta-urgency svg {
    flex-shrink: 0;
    color: #fbbf24;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}

.cta-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.cta-stat-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .cta-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .cta-stat-number {
        font-size: 2rem;
    }
}

/* Form Styles */
.cta-form {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: left;
    box-shadow: var(--shadow-md);
}

/* Account Engagement (Pardot) Form Container */
.pardot-form-container {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.pardot-form-container iframe {
    display: block;
    width: 100%;
    min-height: 500px;
    border: none;
}

@media (max-width: 640px) {
    .pardot-form-container {
        padding: 16px;
    }
    
    .pardot-form-container iframe {
        min-height: 550px;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Name fields (姓・名) */
.form-group-name .name-fields {
    display: flex;
    gap: 8px;
}

.form-group-name .name-fields input {
    flex: 1;
    min-width: 0;
}

@media (max-width: 480px) {
    .form-group-name .name-fields {
        flex-direction: column;
    }
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.required-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f97316 !important;
    color: #ffffff !important;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin-left: 8px;
    white-space: nowrap;
}

.optional-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #94a3b8 !important;
    color: #ffffff !important;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin-left: 8px;
    white-space: nowrap;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
    opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Privacy Checkbox */
.form-privacy {
    margin-top: 8px;
}

.privacy-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text);
}

.privacy-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-custom::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg) scale(0);
    transition: transform 0.2s ease;
    margin-top: -2px;
}

.privacy-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.privacy-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    transform: rotate(-45deg) scale(1);
}

.privacy-checkbox:hover .checkbox-custom {
    border-color: var(--color-primary);
}

.privacy-text {
    line-height: 1.4;
}

.privacy-text a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
}

.privacy-text a:hover {
    color: var(--color-primary-dark);
}

/* Privacy Error Message */
.privacy-error {
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 12px;
    padding: 10px 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    display: none;
    align-items: center;
    gap: 8px;
}

.privacy-error::before {
    content: '⚠';
    font-size: 1rem;
}

.form-group.form-privacy.error .privacy-error {
    display: flex !important;
}

.form-group.form-privacy.error .checkbox-custom {
    border-color: #dc2626;
    animation: shake 0.3s ease;
}

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

@keyframes fadeInShake {
    0% { opacity: 0; transform: translateX(-10px); }
    50% { opacity: 1; transform: translateX(5px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}

.cta-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-form {
        padding: 32px 24px;
    }
}

/* Form Loading & Success States */
.cta-form .btn.loading {
    pointer-events: none;
}

.btn-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-success-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 10;
}

.form-success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-success-content {
    text-align: center;
    padding: 40px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.form-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    animation: checkPulse 0.6s ease 0.2s;
}

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

.form-success-icon svg {
    width: 40px;
    height: 40px;
}

.form-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.form-success-message {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Error Overlay */
.form-error-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 10;
}

.form-error-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-error-content {
    text-align: center;
    padding: 40px;
    animation: errorShake 0.5s ease;
}

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

.form-error-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.form-error-icon svg {
    width: 40px;
    height: 40px;
}

.form-error-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.form-error-message {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.form-error-close {
    margin-top: 8px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: #1e293b;
    border-top: 1px solid var(--color-border);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo .logo-image {
    height: 36px;
    width: auto;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer-column a,
.footer-column p {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-updated {
    margin-top: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ===================================
   Inline CTA Sections
   =================================== */
/* CTA Section */
.cta-section-simple {
    padding: 20px 0 40px 0;
    background: transparent;
}

.cta-section-compact {
    padding: 24px 0;
    background: transparent;
}

.cta-section-compact .inline-cta {
    margin-top: 0;
    border-top: none;
}

.cta-section-compact .inline-cta-boxed {
    margin-top: 0;
}

@media (max-width: 768px) {
    .cta-section-compact {
        padding: 16px 0;
    }

    .cta-section-compact .inline-cta-boxed {
        padding: 20px 16px;
    }

    .cta-section-simple {
        padding: 16px 0 24px 0;
    }
}

.cta-section-simple .inline-cta {
    margin-top: 0;
    border-top: none;
}

.cta-section-simple .inline-cta-boxed {
    margin-top: 0;
}

.inline-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.inline-cta-center {
    justify-content: center;
}

.inline-cta-boxed {
    margin-top: 60px;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.06) 0%, rgba(99, 102, 241, 0.04) 100%);
    border: 1px solid rgba(8, 145, 178, 0.15);
    border-radius: var(--radius-xl);
    border-top: 1px solid rgba(8, 145, 178, 0.15);
    flex-direction: column;
    align-items: center;
}

.inline-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.inline-cta-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    margin: 0;
}

.inline-cta-urgency {
    font-size: 0.8rem;
    color: #dc2626;
    font-weight: 600;
    text-align: center;
    margin: 8px 0 0;
}

.inline-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

@media (max-width: 640px) {
    .inline-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .inline-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .inline-cta-boxed {
        padding: 30px 20px;
    }
    
    .inline-cta-text {
        font-size: 1.1rem;
    }
    
    .inline-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .inline-cta-buttons .btn {
        width: 100%;
    }
}

/* ===================================
   Animations
   =================================== */
/* Scroll Animation - Disabled
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-quart);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
*/

/* Animation disabled - elements always visible */
[data-animate] {
    opacity: 1;
    transform: none;
}

/* ===================================
   Case Study Modal
   =================================== */

.case-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.case-modal.active {
    opacity: 1;
    visibility: visible;
}

.case-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.case-modal-content {
    position: relative;
    background: #fff;
    border-radius: var(--radius-xl);
    max-width: 650px;
    width: 90%;
    max-height: 95vh;
    overflow-y: auto;
    padding: 28px;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.case-modal.active .case-modal-content {
    transform: scale(1) translateY(0);
}

.case-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
}

.case-modal-close:hover {
    background: #e2e8f0;
    color: #1a1a2e;
}

.case-modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.case-modal-logo {
    width: 70px;
    height: 44px;
    object-fit: contain;
}

.case-modal-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
}

.case-modal-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.case-modal-meta span {
    display: inline-block;
    padding: 6px 14px;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #64748b;
}

.case-modal-section {
    margin-bottom: 14px;
}

.case-modal-section:last-child {
    margin-bottom: 0;
}

.case-modal-section h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.case-modal-section p {
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Case Modal Hero Image */
.case-modal-hero {
    margin: -28px -28px 16px -28px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
}

.case-modal-hero-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 15%;
}

.case-modal-header-text {
    flex: 1;
}

.case-modal-headline {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 6px;
    line-height: 1.5;
}

/* Case Modal Persons */
.case-modal-persons {
    margin-bottom: 14px;
    padding: 14px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--radius-md);
}

.case-modal-persons h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 10px;
}

.case-modal-persons-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.case-modal-person {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex: 1 1 calc(33.333% - 8px);
    min-width: 180px;
    max-width: calc(33.333% - 6px);
}

.case-modal-person-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.case-modal-person-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.case-modal-person-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.case-modal-person-name {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.8125rem;
}

.case-modal-person-role {
    font-size: 0.75rem;
    color: #64748b;
}

/* Case Modal Link Button */
.case-modal-link {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
}

.case-modal-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Responsive */
@media (max-width: 640px) {
    .case-modal-hero-img {
        height: 150px;
    }
    
    .case-modal-persons-list {
        flex-direction: column;
    }
    
    .case-modal-person {
        width: 100%;
        max-width: none;
        flex: none;
    }
    
    .case-modal-content {
        padding: 20px;
    }
    
    .case-modal-hero {
        margin: -20px -20px 12px -20px;
    }
}

/* Client Logo Clickable Style */
.client-logo[data-case] {
    cursor: pointer;
    position: relative;
}

.client-logo[data-case]::before {
    content: '事例を見る';
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
    opacity: 0;
    z-index: 1;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.client-logo[data-case]:hover::before {
    opacity: 1;
    transform: scale(1);
}

.client-logo[data-case]:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Hide case popup for logos without case link */
.client-logo.no-case::before,
.client-logo.no-case::after {
    display: none !important;
}

.client-logo.no-case:hover {
    cursor: default;
    border-color: #e2e8f0;
    box-shadow: none;
    transform: none;
}

.client-logo.no-case:hover::before {
    display: none !important;
}

/* ===================================
   Program Modal
   =================================== */

.program-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.program-modal.active {
    opacity: 1;
    visibility: visible;
}

.program-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.program-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 36px;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-xl);
}

.program-modal.active .program-modal-content {
    transform: scale(1) translateY(0);
}

.program-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-elevated);
    border-radius: 50%;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.program-modal-close:hover {
    background: var(--color-bg-hover);
    color: var(--color-text);
    transform: rotate(90deg);
}

.program-modal-header {
    margin-bottom: 20px;
    text-align: center;
}

.program-modal-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.program-modal-badge.program-badge-accent {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.program-modal-badge.program-badge-workspace {
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC04, #EA4335);
}

.program-modal-badge.program-badge-gemini {
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
}

.program-modal-badge.program-badge-advanced {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.program-modal-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
}

.program-modal-body {
    color: var(--color-text);
}

.program-modal-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.program-modal-section {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-border);
}

.program-modal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.program-modal-section h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-modal-section h4::before {
    content: '';
    width: 3px;
    height: 14px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.program-modal-section p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.program-modal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-modal-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: var(--color-text);
    line-height: 1.5;
}

.program-modal-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.program-modal-footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.program-modal-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 48px;
    background: white;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 200px;
}

.program-modal-cart-btn:hover {
    background: var(--color-primary);
    color: white;
}

.program-modal-cart-btn.added {
    background: var(--color-primary);
    color: white;
}

.program-modal-cart-btn.added:hover {
    background: #ef4444;
    border-color: #ef4444;
}

@media (max-width: 768px) {
    .program-modal-content {
        width: 95%;
        padding: 24px 20px;
        max-height: 85vh;
        border-radius: var(--radius-lg);
    }

    .program-modal-close {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
    }

    .program-modal-title {
        font-size: 1.15rem;
    }

    .program-modal-description {
        font-size: 0.85rem;
    }

    .program-modal-section h4 {
        font-size: 0.85rem;
    }

    .program-modal-section ul li {
        font-size: 0.85rem;
    }

    .program-modal-cart-btn {
        padding: 12px 32px;
        font-size: 0.9rem;
    }
}

/* Program Card Clickable */
.program-card[data-program] {
    cursor: pointer;
    transition: all 0.3s ease;
    padding-bottom: 48px;
}

.program-card[data-program]:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.program-card[data-program]::after {
    content: 'クリックで詳細を見る →';
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    white-space: nowrap;
}

/* ===================================
   Responsive Adjustments
   =================================== */

/* Hero Responsive */
@media (max-width: 900px) {
    .hero-container {
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-card-1 {
        right: 0;
    }
    
    .floating-card-2 {
        left: 0;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .floating-card {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-orb {
        animation: none;
    }
    
    .clients-track {
        animation: none;
    }
}

/* ===================================
   お問い合わせ 追従ボタン
   =================================== */
.contact-floating,
.cart-floating {
    position: fixed;
    right: 16px;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 56px;
    opacity: 0.65;
    transition: opacity 0.3s ease;
}

.contact-floating:hover,
.cart-floating:hover {
    opacity: 1;
}

.contact-floating {
    bottom: 24px;
    text-decoration: none;
}

.contact-floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #06b6d4);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.4);
    transition: all 0.3s ease;
}

.contact-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(8, 145, 178, 0.5);
}

.contact-floating-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-primary);
    background: white;
    padding: 3px 8px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
}

/* ===================================
   検討カート
   =================================== */

/* フローティングボタン */
.cart-floating {
    bottom: 120px;
}

.cart-floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.cart-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.cart-count.active {
    opacity: 1;
    transform: scale(1);
}

.cart-floating-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-primary);
    background: white;
    padding: 3px 8px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ドロワー */
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
}

.cart-drawer.active {
    pointer-events: auto;
}

.cart-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-drawer.active .cart-drawer-overlay {
    opacity: 1;
}

.cart-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
}

.cart-drawer.active .cart-drawer-content {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
}

.cart-drawer-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-heading);
}

.cart-clear-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 8px 16px;
    margin-top: 10px;
    border-radius: var(--radius-sm);
    border: none;
    background: transparent;
    font-size: 0.8rem;
    font-weight: 500;
    color: #dc2626;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-clear-btn:hover {
    background: #fef2f2;
    text-decoration: underline;
}

.cart-clear-btn svg {
    stroke: #dc2626;
}

.cart-drawer-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--color-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all 0.2s ease;
}

.cart-drawer-close:hover {
    background: var(--color-border);
    color: var(--color-heading);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-muted);
}

.cart-empty svg {
    margin-bottom: 20px;
    opacity: 0.4;
}

.cart-empty p {
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 8px;
}

.cart-empty span {
    font-size: 0.875rem;
}

/* カートアイテム */
.cart-item {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    position: relative;
}

.cart-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cart-item-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    color: white;
    background: var(--gradient-primary);
}

.cart-item-badge.program-badge-gemini {
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
}

.cart-item-badge.program-badge-advanced {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.cart-item-remove {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all 0.2s ease;
}

.cart-item-remove:hover {
    background: #fee2e2;
    color: #ef4444;
}

.cart-item-title {
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 6px;
    font-size: 1rem;
    line-height: 1.4;
}

.cart-item-duration {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}

.cart-item-prices {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px dashed var(--color-border);
}

.cart-item-price {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    padding: 4px 0;
}

.cart-item-price span:first-child {
    color: var(--color-text-muted);
}

.cart-item-price span:last-child {
    font-weight: 600;
    color: var(--color-heading);
}

.cart-item-price.subsidy span:last-child {
    color: var(--color-primary);
}

/* フッター */
.cart-drawer-footer {
    padding: 10px 16px;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg);
    display: none;
    margin-top: auto;
}

.cart-drawer-footer.active {
    display: block;
}

.cart-summary {
    margin-bottom: 6px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
}

.cart-summary-row span:first-child {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.cart-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-heading);
}

.cart-summary-subsidy {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    margin: 4px -16px 0;
    padding: 10px 16px;
    border-radius: var(--radius-md);
}

.cart-total-subsidy {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 助成金非適用状態 */
.cart-summary-subsidy.ineligible {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1), rgba(156, 163, 175, 0.1));
}

.cart-summary-subsidy.ineligible span:first-child {
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

.cart-summary-subsidy.ineligible .cart-total-subsidy {
    background: none;
    -webkit-text-fill-color: var(--color-text-dim);
    color: var(--color-text-dim);
    font-size: 1rem;
}

/* 人数入力 */
.cart-participants {
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.08));
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-participants label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 0;
}

.cart-participants label svg {
    color: var(--color-primary);
    width: 16px;
    height: 16px;
}

.participant-input-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.participant-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-border);
    background: white;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.participant-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.participant-btn:active {
    transform: scale(0.95);
}

#participantCount {
    width: 56px;
    height: 32px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-heading);
    background: white;
    -moz-appearance: textfield;
}

#participantCount::-webkit-outer-spin-button,
#participantCount::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#participantCount:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.participant-unit {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dim);
}

/* 訓練時間表示 */
.cart-summary-duration {
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--color-border);
    margin-bottom: 8px;
}

.cart-duration {
    font-weight: 600;
    color: var(--color-primary);
}

/* 見積もり合計 */
.cart-summary-estimate {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(6, 182, 212, 0.05));
    margin: 5px -12px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.cart-summary-estimate span:first-child {
    font-weight: 600;
}

.cart-estimate {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-heading);
}

/* 助成金注釈 */
.cart-summary-note {
    margin-top: 6px;
    padding: 6px 8px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--radius-sm);
    border-left: 2px solid var(--color-primary);
}

.cart-summary-note p {
    font-size: 0.6rem;
    color: var(--color-text-dim);
    line-height: 1.35;
    margin: 0;
}

.cart-summary-note p + p {
    margin-top: 3px;
}

.cart-subsidy-condition {
    font-weight: 600;
    color: var(--color-primary) !important;
}

.cart-inquiry-btn {
    width: 100%;
    padding: 12px 20px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cart-inquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

/* 検討するボタン */
.program-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.program-cart-btn:hover {
    background: var(--color-primary);
    color: white;
}

.program-cart-btn.added {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.program-cart-btn.added:hover {
    background: #ef4444;
    border-color: #ef4444;
}

.program-cart-btn svg {
    width: 18px;
    height: 18px;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .contact-floating,
    .cart-floating {
        right: 12px;
        width: 50px;
    }
    
    .contact-floating {
        bottom: 16px;
    }
    
    .cart-floating {
        bottom: 100px;
    }
    
    .contact-floating-btn,
    .cart-floating-btn {
        width: 44px;
        height: 44px;
    }
    
    .cart-drawer-content {
        max-width: 100%;
    }
}
