/* ===================================
   Global Styles & Variables
   =================================== */

:root {
    /* Brand Colors - Vibrant Green Theme */
    --primary-color: #00C853;
    --primary-dark: #00A843;
    --primary-light: #69F0AE;
    --secondary-color: #1A1A1A;
    --accent-color: #FF6B35;
    
    /* Grayscale */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --black: #000000;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Typography */
    --font-family: 'Noto Sans JP', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.7;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-base);
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ===================================
   Container & Grid
   =================================== */

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

@media (min-width: 1920px) {
    .container {
        max-width: 1900px;
        padding: 0 4rem;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2400px;
        padding: 0 5rem;
    }
}

/* ===================================
   Header & Navigation
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar {
    padding: var(--spacing-sm) 0;
}

/* Mobile navbar spacing */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar .container {
        padding: 0 0.75rem;
    }
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-image {
    height: 65px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    object-fit: cover;
    object-position: center;
    transform: scale(1.2);
    transform-origin: center;
}

.logo-image:hover {
    transform: scale(1.2) translateY(-2px);
    filter: brightness(1.1);
}

/* Logo with Campaign Badge */
.logo-with-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    flex: 1;
    min-width: 0;
}

.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 50%, #FFA07A 100%);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4), 0 0 30px rgba(255, 107, 53, 0.2);
    animation: badgePulse 2s ease-in-out infinite, badgeShine 3s linear infinite;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.campaign-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5), 0 0 40px rgba(255, 107, 53, 0.3);
}

.campaign-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badgeSlide 2.5s infinite;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 0.65rem;
}

.badge-text {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.badge-line {
    display: block;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4), 0 0 30px rgba(255, 107, 53, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6), 0 0 40px rgba(255, 107, 53, 0.3);
    }
}

@keyframes badgeShine {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.15);
    }
}

@keyframes badgeSlide {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--transition-base);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-800);
    cursor: pointer;
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--gray-100);
    color: var(--gray-800);
}

.btn-secondary:hover {
    background-color: var(--gray-200);
}

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===================================
   Full Screen Video Modal
   =================================== */

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    backdrop-filter: blur(10px);
}

.video-modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-video {
    width: 70%;
    height: 70%;
    max-width: 1200px;
    max-height: 800px;
    object-fit: contain;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--gray-900);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

.video-close-btn:hover {
    background: var(--white);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.video-close-btn i {
    pointer-events: none;
}

.video-mute-btn {
    position: absolute;
    top: 30px;
    right: 90px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--gray-900);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

.video-mute-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.video-mute-btn.muted {
    background: rgba(255, 255, 255, 0.7);
}

.video-mute-btn.unmuted {
    background: rgba(0, 200, 83, 0.9);
    color: var(--white);
}

.video-mute-btn i {
    pointer-events: none;
}

.video-replay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1.25rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10001;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.4);
}

.video-replay-btn:hover {
    background: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 200, 83, 0.6);
}

.video-replay-btn.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-replay-btn i {
    pointer-events: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-video {
        width: 90%;
        height: auto;
        max-height: 70vh;
    }
    
    .video-close-btn {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .video-mute-btn {
        top: 20px;
        right: 75px;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--spacing-md)) 0 var(--spacing-2xl);
    background: linear-gradient(135deg, #FAFFFE 0%, #F0FFF8 50%, #E8FFF5 100%);
    overflow: hidden;
}

.hero .container {
    overflow: visible;
    max-width: 1800px;
}

/* Modern Animated Background */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Animated Gradient Waves - Enhanced for visibility */
.hero-bg-shapes::before,
.hero-bg-shapes::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center, 
        rgba(0, 200, 83, 0.15) 0%, 
        rgba(102, 126, 234, 0.08) 30%,
        transparent 60%
    );
    animation: rotateGradient 25s linear infinite;
    border-radius: 40%;
}

.hero-bg-shapes::before {
    top: -50%;
    left: -50%;
}

.hero-bg-shapes::after {
    bottom: -50%;
    right: -50%;
    animation-delay: -12.5s;
    animation-direction: reverse;
    background: radial-gradient(
        circle at center, 
        rgba(102, 126, 234, 0.12) 0%,
        rgba(0, 200, 83, 0.08) 30%, 
        transparent 60%
    );
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Animated Numbers Background */
.shape {
    position: absolute;
    filter: blur(100px);
    opacity: 1;
    will-change: transform;
}

/* Gradient Mesh Effect - Enhanced visibility */
.shape-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at center, rgba(0, 200, 83, 0.25) 0%, rgba(0, 200, 83, 0.1) 40%, transparent 70%);
    top: -100px;
    right: 10%;
    animation: morphBlob 25s infinite ease-in-out;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(102, 126, 234, 0.2) 0%, rgba(105, 240, 174, 0.15) 40%, transparent 70%);
    bottom: -100px;
    left: 5%;
    animation: morphBlob 20s infinite ease-in-out 3s;
}

.shape-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle at center, rgba(0, 200, 83, 0.18) 0%, rgba(0, 200, 83, 0.08) 40%, transparent 70%);
    top: 20%;
    left: 35%;
    animation: morphBlob 22s infinite ease-in-out 1.5s;
}

.shape-4 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(105, 240, 174, 0.15) 0%, rgba(0, 168, 67, 0.1) 40%, transparent 70%);
    bottom: 10%;
    right: 15%;
    animation: morphBlob 18s infinite ease-in-out 2.5s;
}

/* Smooth Morphing Animation */
@keyframes morphBlob {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        transform: translate(30px, -40px) scale(1.1) rotate(90deg);
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.95) rotate(180deg);
        border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
    }
    75% {
        transform: translate(40px, 20px) scale(1.05) rotate(270deg);
        border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
    }
}

/* Enhanced Particles Effect */
.shape::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(0, 200, 83, 0.25) 3px, transparent 3px),
        radial-gradient(circle, rgba(102, 126, 234, 0.2) 2px, transparent 2px),
        radial-gradient(circle, rgba(0, 200, 83, 0.15) 1px, transparent 1px);
    background-size: 120px 120px, 80px 80px, 50px 50px;
    background-position: 0 0, 40px 40px, 20px 20px;
    opacity: 0.5;
    animation: particleFloat 30s linear infinite;
}

@keyframes particleFloat {
    0% {
        background-position: 0 0, 40px 40px, 20px 20px;
    }
    100% {
        background-position: 120px 120px, 160px 160px, 70px 70px;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 2rem;
    align-items: center;
    max-width: none;
    width: 100%;
    padding: 0 2rem;
}

.hero-text {
    max-width: 100%;
    position: relative;
    padding-bottom: 6rem;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    margin-top: -4cm;
}

.hero-dashboard-img {
    width: 100%;
    min-width: 700px;
    max-height: 600px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: fadeIn 1s ease-out 0.5s both;
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    animation: fadeIn 1s ease-out 0.8s both;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.hero-visual-labels {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-mockup-image {
    width: 90%;
    max-width: 90%;
    height: auto;
    display: block;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    animation: slideInRight 1s ease-out;
    margin: 0 auto;
    opacity: 1;
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    animation: slideInDown 0.8s ease-out;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

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

/* Ticket Announcement (New Feature Badge) */
.ticket-announcement {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: var(--white);
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.5), 0 0 60px rgba(118, 75, 162, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.ticket-announcement.animate {
    animation: bounceIn 1s ease-out both, shimmer 3s infinite;
    opacity: 1;
}

.ticket-announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

.ticket-announcement::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #667eea;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 200%;
    }
}

@keyframes shimmer {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.5), 0 0 60px rgba(118, 75, 162, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(118, 75, 162, 0.6), 0 0 80px rgba(240, 147, 251, 0.4);
    }
}

.announcement-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.announcement-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.announcement-label {
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.announcement-text {
    font-size: 1.2rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

/* Hero Logo */
.hero-logo-wrapper {
    margin-bottom: 2rem;
    opacity: 0;
}

.hero-logo-wrapper.animate {
    animation: fadeInDown 1s ease-out 0.3s both;
}

.hero-logo {
    max-width: 500px;
    height: auto;
    display: block;
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.4;
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
}

.title-line {
    display: block;
    opacity: 0;
}

.title-line.animate {
    animation: slideInLeft 0.8s ease-out both;
}

.title-line.animate:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line.animate:nth-child(3) {
    animation-delay: 0.4s;
}

.title-emphasis {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 5rem;
    position: relative;
}

.title-sub {
    font-size: 3rem;
    color: var(--gray-700);
    font-weight: 700;
}

/* Hero Description */
.hero-description {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0;
}

.hero-description.animate {
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero-catchphrase {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.6;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a847 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.5rem 0;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: visible;
}





.hero-subtext {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-weight: 500;
    line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    opacity: 0;
}

.hero-stats.animate {
    animation: fadeIn 1s ease-out 0.8s both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

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

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

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
    opacity: 0;
}

.hero-buttons.animate {
    animation: fadeIn 1s ease-out 1s both;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.4);
}

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

.btn-glow:hover::before {
    left: 100%;
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-glow:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-white {
    background-color: var(--white);
    color: var(--gray-900);
    border: 2px solid var(--gray-300);
}

.btn-white:hover {
    background-color: var(--gray-50);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* Hero Trust */
.hero-trust {
    opacity: 0;
}

.hero-trust.animate {
    animation: fadeIn 1s ease-out 1.2s both;
}

.trust-text {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-600);
    font-size: 0.875rem;
}

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

/* Features Ticker Animation */
.features-ticker {
    margin-top: 2rem;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(0, 200, 83, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border-radius: var(--radius-xl);
    padding: 1rem 0;
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: 0;
    margin-right: 0;
}

/* デスクトップのみ3cm下げる */
@media (min-width: 769px) {
    .features-ticker {
        margin-top: calc(2rem + 3cm);
    }
}

.features-ticker::before,
.features-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.features-ticker::before {
    left: 0;
    background: linear-gradient(90deg, #FAFFFE 0%, rgba(250, 255, 254, 0) 100%);
}

.features-ticker::after {
    right: 0;
    background: linear-gradient(90deg, rgba(250, 255, 254, 0) 0%, #FAFFFE 100%);
}

.ticker-track {
    display: flex;
    gap: 3rem;
    animation: scroll-left 30s linear infinite;
    width: fit-content;
    will-change: transform;
    min-width: 100%;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1rem;
}

.ticker-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    background: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 200, 83, 0.15);
}

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

/* YouTube Link with Thumbnail */
.youtube-link {
    margin-top: 1.5rem;
    text-align: center;
}

/* YouTube Text Link */
.youtube-text-link {
    margin-top: 1.5rem;
    text-align: left;
}

.youtube-text-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--gray-300);
    transition: all 0.3s ease;
}

.youtube-text-link a:hover {
    background: white;
    border-color: #FF0000;
    color: #FF0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.youtube-text-link a .fa-youtube {
    color: #FF0000;
    font-size: 1.25rem;
}

.youtube-text-link a .fa-external-link-alt {
    font-size: 0.875rem;
}

/* Press Release Slider */
.press-release-slider {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    height: 60px;
    margin-bottom: 0;
}

.press-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.press-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.6s ease;
}

.press-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.press-slide.exit {
    opacity: 0;
    transform: translateY(-60px);
}

.press-date {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
    white-space: nowrap;
}

.press-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap;
}

.press-badge-news {
    background: #FF6B35;
}

.press-link {
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.press-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.press-link i {
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Responsive padding for press slider */
@media (max-width: 1200px) {
    .press-slide {
        padding-left: 2rem;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .press-slide {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .press-date {
        font-size: 0.75rem;
    }
    
    .press-link {
        font-size: 0.875rem;
    }
}

/* Press Release Section */
.press-release-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.press-release-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.press-release-title i {
    color: var(--primary-color);
}

.press-release-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.press-release-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--gray-800);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.press-release-item:hover {
    background: var(--gray-100);
    border-left-color: var(--primary-color);
    transform: translateX(4px);
}

.press-date {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
    min-width: 80px;
}

.press-title {
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 500;
}

.press-release-item i {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.press-release-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.press-release-more:hover {
    gap: 0.75rem;
}

.press-release-more i {
    font-size: 0.875rem;
}

.youtube-thumbnail-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.youtube-thumbnail-link:hover {
    transform: translateY(-4px);
}

.youtube-thumbnail-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.youtube-thumbnail-link:hover .youtube-thumbnail-container {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.youtube-thumbnail-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.youtube-thumbnail-link:hover .youtube-thumbnail-image {
    transform: scale(1.05);
}

.youtube-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 0, 0, 0.5);
}

.youtube-thumbnail-link:hover .youtube-play-overlay {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(255, 0, 0, 0.7);
}

.youtube-play-overlay i {
    color: white;
    font-size: 2.5rem;
    margin-left: 4px;
}

.youtube-thumbnail-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5), transparent);
    padding: 2rem 1.5rem 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.youtube-caption-text {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.youtube-thumbnail-caption i {
    color: white;
    font-size: 0.875rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeIn 1s ease-out 0.8s both;
}



/* Hero People Image */
.hero-people-wrapper {
    position: relative;
    margin-bottom: -50px;
    z-index: 10;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-people-image {
    width: 100%;
    max-width: 680px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.15));
    animation: floatPeople 6s infinite ease-in-out;
}

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

/* Dashboard Preview */
.dashboard-preview {
    position: relative;
    z-index: 1;
}

.dashboard-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.dashboard-card {
    background: linear-gradient(145deg, var(--white) 0%, #FAFFFE 100%);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all var(--transition-base);
    animation: slideInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-card:hover::before {
    opacity: 1;
}

.dashboard-card:nth-child(1) {
    animation-delay: 1s;
}

.dashboard-card:nth-child(2) {
    animation-delay: 1.2s;
}

.dashboard-card:nth-child(3) {
    animation-delay: 1.4s;
}

.dashboard-card:nth-child(4) {
    animation-delay: 1.6s;
}

.dashboard-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 200, 83, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.dashboard-card:hover .card-icon {
    transform: rotate(5deg) scale(1.1);
}

.card-messages .card-icon {
    background: linear-gradient(135deg, #00C853, #69F0AE);
    color: var(--white);
}

.card-users .card-icon {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
    color: var(--white);
}

.card-analytics .card-icon {
    background: linear-gradient(135deg, #FF6B35, #FF9E80);
    color: var(--white);
}

.card-revenue .card-icon {
    background: linear-gradient(135deg, #9C27B0, #CE93D8);
    color: var(--white);
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 0.375rem;
    background: linear-gradient(135deg, var(--gray-900), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-trend {
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.card-trend.up {
    color: #00C853;
    background: rgba(0, 200, 83, 0.1);
}

.card-trend.down {
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
}

.card-trend i {
    font-size: 0.75rem;
}

.card-description {
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-top: 0.75rem;
    font-weight: 500;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: floatIcon 4s infinite ease-in-out;
}

.icon-1 {
    top: -30px;
    right: 10%;
    color: var(--primary-color);
    animation-delay: 0s;
}

.icon-2 {
    top: 30%;
    right: -20px;
    color: #2196F3;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 20%;
    left: -20px;
    color: #FF6B35;
    animation-delay: 2s;
}

.icon-4 {
    bottom: -30px;
    left: 20%;
    color: #9C27B0;
    animation-delay: 1.5s;
}

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

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===================================
   Section Headers
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* ===================================
   Use Cases Scenarios Section
   =================================== */

.use-cases-scenarios {
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: hidden;
}

/* Use Cases Scenarios Title */
.use-cases-scenarios .section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.3;
}

.use-cases-scenarios .title-line-1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-700);
}

.use-cases-scenarios .title-line-2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a847 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Challenge Image */
.challenge-image-wrapper {
    display: flex;
    justify-content: center;
    margin: 3rem auto;
    max-width: 800px;
}

.challenge-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Solution Section */
.solution-section {
    margin-top: 5rem;
    padding: 5rem var(--spacing-xl);
    background: linear-gradient(180deg, #ffffff 0%, #f8fdf9 100%);
}

.solution-header {
    text-align: center;
    margin-bottom: 5rem;
}

.solution-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.solution-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--gray-900);
}

.solution-brand {
    color: var(--primary-color);
    font-size: 3rem;
}

.solution-highlight {
    position: relative;
    display: inline-block;
}

.solution-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.2em;
    left: 0;
    width: 100%;
    height: 0.3em;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(0, 200, 83, 0.3) 100%);
    z-index: -1;
}

.solution-items {
    max-width: 1200px;
    margin: 0 auto;
}

.solution-row {
    display: flex;
    margin-bottom: 4rem;
}

.solution-right {
    justify-content: flex-end;
}

.solution-left {
    justify-content: flex-start;
}

/* Solution with Video */
.solution-with-video {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 100%;
}

.solution-with-video.solution-right {
    justify-content: flex-end;
    margin-left: auto;
}

.solution-with-video.solution-left {
    justify-content: flex-start;
    margin-right: auto;
}

/* Desktop Video (outside card) */
.solution-video-desktop {
    width: 500px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.solution-video-desktop:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 200, 83, 0.2);
}

/* Left Video (outside card) */
.solution-video-left {
    width: 500px;
    flex-shrink: 0;
}

.solution-video-left video {
    width: 100%;
    height: auto;
    display: block;
}

/* Right Video (outside card) */
.solution-video-right {
    width: 500px;
    flex-shrink: 0;
}

.solution-video-right video {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile Video (inside card) - Hidden by default */
.solution-video-mobile {
    display: none;
}

.solution-video {
    width: 100%;
    height: auto;
    display: block;
}

.solution-with-video .solution-content-box {
    width: 700px;
}

.solution-content-box {
    width: 700px;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.solution-content-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 200, 83, 0.15);
}

.solution-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a847 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.solution-icon-circle i {
    font-size: 2.5rem;
    color: white;
}

.solution-industry {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.solution-industry span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
}

.solution-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.solution-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.solution-point i {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.solution-point p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

/* Responsive for Solution Section */
@media (max-width: 1024px) {
    .solution-with-video {
        flex-direction: column;
        gap: 2rem;
        max-width: 600px;
    }
    
    .solution-with-video.solution-right,
    .solution-with-video.solution-left {
        margin-left: auto;
        margin-right: auto;
    }
    
    .solution-video-container {
        width: 100%;
        max-width: 500px;
    }
    
    .solution-with-video .solution-content-box {
        width: 100%;
    }
    
    .solution-content-box {
        width: 100%;
        max-width: 600px;
    }
    
    .solution-right,
    .solution-left {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .solution-section {
        padding: 3rem 0.75rem;
    }
    
    .solution-header {
        margin-bottom: 2.5rem;
    }
    
    .solution-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .solution-title {
        font-size: 1.75rem;
        line-height: 1.5;
    }
    
    .solution-brand {
        font-size: 2rem;
    }
    
    .solution-highlight {
        font-size: 1.75rem;
    }
    
    .solution-category-section {
        margin-bottom: 2.5rem;
    }
    
    .solution-category-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .solution-category-title i {
        font-size: 1.75rem;
    }
    
    .solution-industry-group {
        margin-bottom: 2rem;
        padding: 0 0 0 1rem;
        border-radius: 12px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        white-space: nowrap;
    }
    
    .solution-industry-group::-webkit-scrollbar {
        display: none;
    }
    
    .solution-industry-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        display: block;
        white-space: normal;
        width: calc(100% - 1rem);
    }
    
    .solution-industry-subtitle i {
        font-size: 1.5rem;
    }
    
    .solution-with-video {
        display: block;
    }
    
    /* Hide desktop video on mobile */
    .solution-video-desktop {
        display: none;
    }
    
    .solution-video-left {
        display: none;
    }
    
    .solution-video-right {
        display: none;
    }
    
    /* Show mobile video on mobile */
    .solution-video-mobile {
        display: block;
        width: 100%;
        margin: 0.75rem 0;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }
    
    .solution-with-video .solution-content-box {
        width: 100%;
        max-width: 100%;
    }
    
    .solution-content-box {
        padding: 1rem 0.875rem;
        width: 100%;
        scroll-snap-align: center;
    }
    
    .solution-icon-circle {
        width: 45px;
        height: 45px;
        margin-bottom: 0.75rem;
    }
    
    .solution-icon-circle i {
        font-size: 1.5rem;
    }
    
    .solution-industry {
        font-size: 1.1rem;
        margin-bottom: 0.875rem;
        line-height: 1.4;
    }
    
    .solution-details {
        gap: 0.75rem;
    }
    
    .solution-point {
        gap: 0.5rem;
    }
    
    .solution-point i {
        font-size: 1rem;
    }
    
    .solution-point p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .solution-row {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 1rem;
        vertical-align: top;
        width: 85vw;
        max-width: 85vw;
        flex-shrink: 0;
        white-space: normal;
        scroll-snap-align: start;
    }
    
    .solution-row:first-of-type {
        scroll-snap-align: start;
    }
    
    .solution-row:last-child {
        margin-right: 1rem;
    }
    
    .category-tabs {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.75rem;
    }
    
    .category-tab {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
        gap: 0.75rem;
        justify-content: center;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }
    
    .category-tab i {
        font-size: 1.5rem;
    }
    
    .category-tab span {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .challenge-image-wrapper {
        margin: 2rem auto;
        padding: 0 0.75rem;
    }
    
    .challenge-image {
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    /* All main sections padding */
    .features,
    .benefits,
    .use-cases,
    .pricing,
    .download,
    .contact {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .section-header {
        padding: 0 0.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem 1.25rem;
    }
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: white;
    border: 2px solid var(--gray-300);
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab i {
    font-size: 1.5rem;
}

.category-tab:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a847 100%);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.scenario-category {
    display: none;
}

.scenario-category.active {
    display: block;
}

/* Solution Category Section */
.solution-category-section {
    margin-bottom: 5rem;
}

.solution-category-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.solution-category-title i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Solution Industry Group */
.solution-industry-group {
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.02) 0%, rgba(0, 168, 67, 0.02) 100%);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary-color);
}

.solution-industry-subtitle {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.solution-industry-subtitle i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

/* Scroll Hint */
.scroll-hint {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.scroll-hint i {
    font-size: 1.25rem;
    color: var(--primary-color);
    animation: pointPulse 1.5s ease-in-out infinite;
}

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

/* Genre Navigation Buttons */
.genre-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 2.5rem 0;
}

.genre-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.genre-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.3);
}

.genre-btn:active {
    transform: translateY(-1px);
}

.genre-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.genre-btn:hover i {
    transform: scale(1.2);
}

/* Scenarios Slider */
.scenarios-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

/* Scenario Card */
.scenario-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 200, 83, 0.15);
    border-color: var(--primary-color);
}

/* Scenario Icon */
.scenario-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a847 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
    margin-bottom: 0.25rem;
}

/* Scenario Title */
.scenario-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 0;
}

.scenario-subtitle {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

/* Scenario Video */
.scenario-video {
    width: 100%;
    max-width: 500px;
    margin: 0.5rem auto;
}

.scenario-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* 動画があるカードはホバー時のボーダーとトランジションを無効化 */
.scenario-card:has(.scenario-video) {
    border: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scenario-card:has(.scenario-video):hover {
    border: none !important;
}

/* Scenario Challenge */
.scenario-challenge {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 142, 83, 0.05) 100%);
    padding: 1rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid #FF6B35;
}

.scenario-challenge h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 2px rgba(255, 107, 53, 0.1);
}

.scenario-challenge h4 i {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
    animation: wobble 2s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.scenario-challenge p {
    font-size: 0.95rem;
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 0.6rem;
    line-height: 1.6;
    padding-left: 0.5rem;
    border-left: 3px solid rgba(255, 107, 53, 0.3);
}

.scenario-challenge p:last-child {
    margin-bottom: 0;
}

/* Scenario Solution */
.scenario-solution {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.05) 0%, rgba(0, 168, 67, 0.05) 100%);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.scenario-solution h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scenario-solution ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scenario-solution li {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.6;
}

.scenario-solution li:last-child {
    margin-bottom: 0;
}

.scenario-solution li i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Scenario Features */
.scenario-features h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.875rem;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.feature-tag i {
    font-size: 0.75rem;
}

/* Scenario Effects */
.scenario-effects h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.scenario-effects ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scenario-effects li {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.5;
}

.scenario-effects li:last-child {
    margin-bottom: 0;
}

.scenario-effects li i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

/* Slider Indicators */
.slider-indicators {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Other Industries */
.other-industries {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border-radius: var(--radius-xl);
}

.other-industries p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.other-industries i {
    color: var(--primary-color);
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.industry-tags span {
    padding: 0.5rem 1.25rem;
    background: var(--white);
    color: var(--gray-700);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.industry-tags span:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

/* Tablet: 2 Column Layout */
@media (max-width: 1023px) and (min-width: 769px) {
    .use-cases-scenarios .title-line-1 {
        font-size: 1.3rem;
    }
    
    .use-cases-scenarios .title-line-2 {
        font-size: 2.2rem;
    }
    
    .scenarios-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile: Horizontal Scroll */
@media (max-width: 768px) {
    .use-cases-scenarios {
        padding: var(--spacing-2xl) 0;
    }
    
    .use-cases-scenarios .title-line-1 {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .use-cases-scenarios .title-line-2 {
        font-size: 1.75rem;
        font-weight: 800;
    }
    
    .scroll-hint {
        display: flex;
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .scenarios-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1.5rem 0;
        margin: 0 -0.75rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .scenarios-slider::-webkit-scrollbar {
        display: none;
    }
    
    .scenario-card {
        flex: 0 0 92%;
        max-width: none;
        scroll-snap-align: center;
        padding: 1.25rem 1rem;
        min-height: auto;
        gap: 0.75rem;
    }
    
    .scenario-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .scenario-title {
        font-size: 1.2rem;
        font-weight: 800;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    
    .scenario-subtitle {
        font-size: 0.85rem;
    }
    
    .scenario-video {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .scenario-challenge,
    .scenario-solution {
        padding: 0.875rem;
        border-radius: 10px;
    }
    
    .scenario-challenge h4,
    .scenario-solution h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .scenario-challenge p,
    .scenario-solution li {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }
    
    .scenario-challenge p:last-child {
        margin-bottom: 0;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .scenario-effects li {
        font-size: 0.85rem;
    }
    
    .slider-indicators {
        display: flex;
    }
    
    .other-industries {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .other-industries p {
        font-size: 1rem;
    }
    
    .industry-tags span {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .genre-navigation {
        gap: 0.75rem;
        margin: 1.5rem 0 2rem 0;
    }
    
    .genre-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .genre-btn i {
        font-size: 1rem;
    }
    
    .genre-btn span {
        display: none;
    }
    
    /* Show icon only on mobile */
    .genre-btn {
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

/* ===================================
   Features Section
   =================================== */

.features {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.feature-card-rich {
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card-rich::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card-rich:hover::before {
    transform: scaleX(1);
}

.feature-card-rich:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 200, 83, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-rich:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon-gradient-blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-icon-gradient-green {
    background: linear-gradient(135deg, #00C853 0%, #69F0AE 100%);
}

.feature-icon-gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #a855f7 100%);
}

.feature-icon-gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
}

.feature-icon-gradient-red {
    background: linear-gradient(135deg, #dc2626 0%, #f87171 100%);
}

.feature-icon-gradient-pink {
    background: linear-gradient(135deg, #ec4899 0%, #f9a8d4 100%);
}

.feature-icon-gradient-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #67e8f9 100%);
}

.feature-icon-gradient-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #5eead4 100%);
}

.feature-icon i {
    font-size: 2.25rem;
    color: var(--white);
}

.feature-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.875rem;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
    margin-bottom: 0.625rem;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

/* ===================================
   Benefits Section
   =================================== */

.benefits {
    padding: var(--spacing-3xl) 0;
    background-color: var(--gray-50);
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    transition: all var(--transition-base);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    min-width: 80px;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.benefit-description {
    color: var(--gray-600);
    line-height: 1.7;
}

.benefit-image {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-image img {
    transform: scale(1.05);
}

/* ===================================
   Use Cases Section
   =================================== */

.use-cases {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

/* Case Study Hero */
.case-study-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
    color: var(--white);
}

.case-study-logo {
    margin-bottom: 1.5rem;
}

.company-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.company-type {
    font-size: 1.125rem;
    opacity: 0.9;
}

.case-study-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 900px;
}

/* Case Results */
.case-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.result-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 200, 83, 0.15);
}

.result-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.25);
}

.result-icon i {
    font-size: 2rem;
    color: var(--white);
}

.result-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.result-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.result-features {
    list-style: none;
    padding: 0;
}

.result-features li {
    color: var(--gray-700);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

/* Goal Card Styling - Future-focused aspirational look */
.goal-card {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #00C853, #667eea);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.goal-card:hover {
    border-color: rgba(0, 200, 83, 0.3);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
}

.goal-card .result-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.goal-card .result-title::after {
    content: '🎯';
    margin-left: 0.5rem;
    font-size: 1rem;
}

/* Case Quote */
.case-quote {
    background: var(--gray-50);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary-color);
}

.case-quote blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-800);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.quote-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.use-case-card {
    text-align: center;
    padding: var(--spacing-xl);
    background-color: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

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

.use-case-card:hover .use-case-icon,
.use-case-card:hover .use-case-title,
.use-case-card:hover .use-case-description {
    color: var(--white);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: all var(--transition-base);
}

.use-case-card:hover .use-case-icon {
    background-color: var(--primary-dark);
}

.use-case-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all var(--transition-base);
}

.use-case-card:hover .use-case-icon i {
    color: var(--white);
}

.use-case-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
    transition: all var(--transition-base);
}

.use-case-description {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    transition: all var(--transition-base);
}

/* ===================================
   Pricing Section
   =================================== */

.pricing {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

/* Pricing Highlight Banner */
.pricing-highlight-banner {
    max-width: 900px;
    margin: 2.5rem auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a847 100%);
    border-radius: var(--radius-lg);
    padding: 2rem 3rem;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.2);
    text-align: center;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.8;
    color: var(--white);
    margin: 0;
}

.highlight-emphasis {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    border-bottom: 3px solid rgba(255, 255, 255, 0.8);
    padding-bottom: 2px;
}

.pc-only {
    display: inline;
}

.pricing-single {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card-main {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.12);
    overflow: hidden;
    position: relative;
    border: 2px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: 2rem;
    right: -2rem;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: var(--white);
    padding: 0.5rem 3rem;
    font-weight: 700;
    font-size: 0.875rem;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 3rem 3rem 2.5rem;
    text-align: center;
}

.plan-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

/* Dashboard title above cards */
.dashboard-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.4;
    position: relative;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.1);
}

.dashboard-title .title-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-right: 0.75rem;
    display: inline-block;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 200, 83, 0.3));
}

.dashboard-title .title-text {
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 2.1rem;
    letter-spacing: 0.5px;
}

.dashboard-title .title-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        filter: hue-rotate(0deg) brightness(1);
    }
    50% {
        filter: hue-rotate(15deg) brightness(1.1);
    }
}

/* Feature note for advertising */
.feature-note {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 1rem;
    font-style: italic;
}

/* External link for tipping feature */
.feature-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-detail-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* New pricing structure */
.plan-price-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.price-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price-row:last-of-type {
    margin-bottom: 0.5rem;
}

.price-label {
    font-size: 1.125rem;
    font-weight: 600;
    opacity: 0.9;
    text-align: center;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.price-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0.5rem 0 0 0;
    font-style: italic;
}

.price-note-small {
    font-size: 0.75rem;
    opacity: 0.6;
    margin: 0.75rem 0 0 0;
    color: var(--gray-600);
    font-style: italic;
}

.plan-initial-fee {
    font-size: 1.125rem;
    opacity: 0.9;
}

.fee-label {
    font-weight: 600;
}

.fee-value {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0.5rem;
}

.fee-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.plan-features-section,
.plan-support {
    padding: 2.5rem 3rem;
}

.plan-features-section {
    border-bottom: 2px dashed var(--gray-200);
}

.features-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-heading i {
    color: var(--primary-color);
}

.plan-features {
    list-style: none;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.plan-features .feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.plan-features li i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.plan-features li strong {
    color: var(--gray-900);
    font-weight: 700;
}

.support-features {
    list-style: none;
    padding: 0;
}

.support-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.support-features li i {
    color: var(--primary-color);
}

.plan-notes {
    background: var(--gray-50);
    padding: 1.5rem 3rem;
    border-top: 2px dashed var(--gray-200);
}

.note-text {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.plan-actions {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.plan-actions .btn {
    width: 100%;
    max-width: 400px;
}

/* Pricing Features Ticker */
.pricing-features-ticker {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    margin: 0 0 3rem 0;
}

.pricing-ticker-track {
    display: flex;
    gap: 1.5rem;
    animation: pricingScroll 8s linear infinite !important;
}

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

.pricing-feature-card {
    min-width: 280px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pricing-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.15);
    border-color: var(--primary-color);
}

.pricing-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a847 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pricing-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.pricing-card-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.4;
}

/* Campaign Notice */
.campaign-notice {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem 3rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(255, 165, 0, 0.3);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.campaign-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotateBg 15s linear infinite;
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.campaign-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

.campaign-content {
    flex: 1;
    z-index: 1;
}

.campaign-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.campaign-text {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.btn-line {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #06C755;
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
}

.btn-line:hover {
    background: #05b34d;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(6, 199, 85, 0.4);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--gray-200);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--gray-600);
}

.plan-features {
    margin-bottom: var(--spacing-xl);
}

.plan-features li {
    padding: var(--spacing-sm) 0;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.plan-features i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

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

/* ===================================
   BASE-Style Simple Pricing Plan
   =================================== */

.pricing-simple-plan {
    max-width: 900px;
    margin: 0 auto;
}

/* Main Price Box */
.pricing-main-box {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-plan-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-features-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-big-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.pricing-percent {
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-percent-sign {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-left: 0.25rem;
}

.pricing-formula-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.pricing-subtext {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.pricing-divider {
    width: 100%;
    height: 1px;
    background: var(--gray-200);
    margin: 3rem 0;
}

.pricing-additional-fees {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-contact-note {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
    line-height: 1.8;
    text-align: center;
    padding: 1.5rem 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin: 0;
}

.pricing-fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.fee-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-700);
}

.fee-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Features Section */
.pricing-features-section {
    margin-bottom: 4rem;
}

.features-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 2rem;
    text-align: center;
}

/* Support Section */
.pricing-support-section {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 3rem;
}

.support-image {
    margin: 1.5rem 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.support-features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.support-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--gray-700);
}

.support-features-list li i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

/* Notes */
.pricing-notes-simple {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.pricing-notes-simple p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

/* CTA Buttons */
.pricing-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 4rem;
}

.pricing-cta-buttons .btn {
    width: 100%;
    max-width: 400px;
}

/* ===================================
   Download Section
   =================================== */

.download {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.download-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

.download-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.download-description {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.7;
}

.download-button .btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.download-button .btn:hover {
    background-color: var(--gray-100);
}

/* ===================================
   FAQ Section
   =================================== */

.faq {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.12);
    border-color: rgba(0, 200, 83, 0.2);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    gap: 1.5rem;
}

.faq-question:hover {
    background-color: var(--gray-50);
}

.faq-item.active .faq-question {
    background-color: rgba(0, 200, 83, 0.05);
}

.question-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.6;
    flex: 1;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a847 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 200, 83, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-200);
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
    .faq {
        padding: var(--spacing-2xl) 0;
    }

    .faq-list {
        gap: 1rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .question-text {
        font-size: 1rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.9375rem;
    }
}

/* ===================================
   Contact Section
   =================================== */

.contact {
    padding: var(--spacing-3xl) 0;
    background-color: var(--white);
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--gray-50);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--spacing-xs);
}

.required {
    color: var(--accent-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all var(--transition-base);
    background-color: var(--white);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.form-submit .btn {
    min-width: 200px;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background-color: var(--gray-900);
    color: var(--gray-400);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    line-height: 1.7;
    color: var(--gray-500);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--gray-400);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-800);
}

.copyright {
    color: var(--gray-500);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: calc(80px + var(--spacing-lg)) 0 var(--spacing-xl);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero-title {
        font-size: 3.25rem;
    }
    
    .title-emphasis {
        font-size: 3.75rem;
    }
    
    .title-sub {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-people-wrapper {
        margin-bottom: -30px;
    }
    
    .hero-people-image {
        max-width: 550px;
    }
    
    .dashboard-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Pricing Comparison Tablet */
    .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vs-divider {
        transform: rotate(90deg);
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .shape-1 {
        width: 450px;
        height: 450px;
        top: -70px;
        right: 5%;
    }
    
    .shape-2 {
        width: 400px;
        height: 400px;
        bottom: -70px;
        left: 0%;
    }
    
    .shape-3 {
        width: 350px;
        height: 350px;
        top: 25%;
        left: 30%;
    }
    
    .shape-4 {
        width: 300px;
        height: 300px;
        bottom: 15%;
        right: 10%;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.5rem;
    }
    
    .logo-with-badge {
        flex: 1;
        gap: 0.25rem;
        min-width: 0;
        flex-wrap: nowrap;
    }
    
    .logo {
        flex-shrink: 1;
        min-width: 0;
    }
    
    .logo-image {
        height: 45px;
        width: auto;
        max-width: 180px;
        transform: scale(1);
        object-fit: contain;
    }
    
    .campaign-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem;
        gap: 0.25rem;
        white-space: nowrap;
        flex-shrink: 0;
        margin-left: 0;
    }
    
    .badge-icon {
        width: 14px;
        height: 14px;
        font-size: 0.5rem;
    }
    
    .badge-text {
        display: none;
    }
    
    .campaign-badge::after {
        content: 'キャンペーン中';
        font-size: 0.6rem;
        white-space: nowrap;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: calc(60px + var(--spacing-md)) 0 var(--spacing-lg);
        overflow-x: hidden;
    }
    
    .hero .container {
        max-width: 100%;
        padding: 0 0.75rem;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-text {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding-bottom: 10rem;
    }
    
    .youtube-text-link {
        display: block;
        margin-top: 8rem;
        position: relative;
        z-index: 2;
    }
    
    .youtube-text-link a {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
    
    .ticket-announcement {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
        margin-bottom: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .announcement-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        flex-shrink: 0;
    }
    
    .announcement-label {
        font-size: 0.65rem;
    }
    
    .announcement-text {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-title {
        font-size: 2.25rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.3 !important;
        width: 100%;
    }
    
    .title-line {
        display: block !important;
        margin-bottom: 0.5rem;
    }
    
    .title-emphasis {
        font-size: 2.5rem !important;
    }
    
    .title-sub {
        font-size: 1.75rem !important;
    }
    
    .hero-description {
        margin-bottom: 1.5rem !important;
        width: 100%;
    }
    
    .hero-catchphrase {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .hero-subtext {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-number span {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
    }
    
    /* Pricing Features Ticker Mobile */
    .pricing-feature-card {
        min-width: 250px;
        padding: 1.25rem;
    }
    
    .pricing-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .pricing-card-title {
        font-size: 0.9375rem;
    }
    
    .pricing-card-desc {
        font-size: 0.8125rem;
    }
    
    /* Campaign Notice Mobile */
    .campaign-notice {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        text-align: center;
    }
    
    .campaign-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .campaign-title {
        font-size: 1.25rem;
    }
    
    .campaign-text {
        font-size: 1rem;
    }
    
    .btn-line {
        width: 100%;
        justify-content: center;
    }
    
    /* BASE-Style Pricing Mobile */
    .pricing-main-box {
        padding: 3rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .pricing-plan-name {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-features-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-percent {
        font-size: 4rem;
    }
    
    .pricing-percent-sign {
        font-size: 2rem;
    }
    
    .pricing-formula-text {
        font-size: 1.125rem;
    }
    
    .pricing-subtext {
        font-size: 0.875rem;
    }
    
    .pricing-contact-note {
        font-size: 0.9375rem;
        padding: 1.25rem 1.5rem;
        line-height: 1.7;
    }
    
    .pricing-fee-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1rem 1.5rem;
    }
    
    .fee-label,
    .fee-value {
        font-size: 1rem;
    }
    
    .features-section-title {
        font-size: 1.25rem;
    }
    
    .pricing-support-section {
        padding: 2rem 1.5rem;
    }
    
    .support-features-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .support-features-list li {
        font-size: 0.9375rem;
    }
    
    .pricing-notes-simple {
        padding: 1.5rem 0;
    }
    
    .pricing-notes-simple p {
        font-size: 0.875rem;
    }
    
    .pricing-cta-buttons {
        margin-bottom: 3rem;
    }
    
    .hero-people-wrapper {
        margin-bottom: -20px;
    }
    
    .hero-people-image {
        max-width: 400px;
    }
    
    .hero-trust {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .trust-text {
        font-size: 0.85rem;
    }
    
    .features-ticker {
        margin-top: 1rem;
        padding: 0.75rem 0;
        width: 100vw;
        max-width: 100vw;
        overflow: hidden;
        margin-left: 0;
        margin-right: 0;
        left: 0;
        right: 0;
    }
    
    .features-ticker::before,
    .features-ticker::after {
        width: 20px;
    }
    
    .ticker-track {
        gap: 1.5rem;
        width: fit-content;
        min-width: 100%;
    }
    
    .ticker-item {
        gap: 0.5rem;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .ticker-item i {
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
        flex-shrink: 0;
    }
    
    .youtube-link {
        margin-top: 1rem;
    }
    
    .youtube-thumbnail-container {
        max-width: 100%;
    }
    
    .youtube-play-overlay {
        width: 60px;
        height: 60px;
    }
    
    .youtube-play-overlay i {
        font-size: 1.75rem;
    }
    
    .youtube-thumbnail-caption {
        padding: 1.5rem 1rem 0.75rem 1rem;
    }
    
    .youtube-caption-text {
        font-size: 0.875rem;
        flex-direction: column;
    }
    

    
    /* Pricing Highlight Banner Mobile */
    .pricing-highlight-banner {
        padding: 1.5rem 1.25rem;
        margin: 2rem auto;
    }
    
    .highlight-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .highlight-emphasis {
        font-size: 1.3rem;
    }
    
    .pc-only {
        display: none;
        gap: 0.5rem;
    }
    
    .youtube-text i.fab {
        font-size: 1.25rem;
    }
    
    .case-results {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        margin-top: 2rem;
    }
    
    .dashboard-card {
        padding: 1.25rem;
        width: 100%;
        gap: 0.875rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .card-value {
        font-size: 1.375rem;
    }
    
    .card-title {
        font-size: 0.75rem;
    }
    
    .card-description {
        font-size: 0.6875rem;
        margin-top: 0.5rem;
        line-height: 1.4;
    }
    
    .float-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .shape-1 {
        width: 350px;
        height: 350px;
        top: -50px;
        right: -50px;
    }
    
    .shape-2 {
        width: 300px;
        height: 300px;
        bottom: -50px;
        left: -50px;
    }
    
    .shape-3 {
        width: 250px;
        height: 250px;
        top: 30%;
        left: 20%;
    }
    
    .shape-4 {
        width: 200px;
        height: 200px;
        bottom: 20%;
        right: 5%;
    }
    
    /* Mobile Hero Mockup - Hide on mobile/tablet */
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin-left: auto;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-visual-labels {
        display: none;
    }
    
    /* Mobile Press Release */
    .press-release-section {
        padding: 1rem;
    }
    
    .press-release-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .press-date {
        min-width: auto;
    }
    
    .shape {
        filter: blur(60px);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-number {
        min-width: auto;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .download-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ===================================
   Animations
   =================================== */

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===================================
   Utility Classes
   =================================== */

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

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

/* デスクトップのみ機能ティッカーを3cm下げる（最終設定） */
@media (min-width: 769px) {
    .features-ticker {
        margin-top: calc(2rem + 3cm) !important;
    }
}
