/* ========================================
   Bloom - Landing Page Styles
   Black & Silver Premium Design
   ======================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Black & Silver Premium */
    --black: #000000;
    --black-soft: #0a0a0a;
    --gray-dark: #1a1a1a;
    --gray-medium: #808080;
    --gray-light: #b8b8b8;
    --silver: #c0c0c0;
    --silver-light: #e8e8e8;
    --white: #ffffff;
    
    /* Accent Colors */
    --accent-silver: #a8a8a8;
    --success: #2d7a4f;
    --danger: #8b0000;
    
    /* Typography */
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

body {
    font-family: var(--font-jp);
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
    overflow-x: hidden;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px var(--container-padding);
    display: flex;
    align-items: center;
}

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

.header-logo-image {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.header-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-en);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* Hero Video Section with Overlay */
.hero-video-section {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-video-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
    background: var(--black);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Text Overlay on Video */
.hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
    z-index: 10;
    pointer-events: none;
}

.hero-text-overlay .container {
    text-align: center;
    pointer-events: auto;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-text-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px 60px;
    width: 100%;
    max-width: 1200px;
}

/* Eyebrow at Top (Above Video) */
.hero-eyebrow-top {
    width: 100%;
    text-align: center;
    padding: 20px 20px 0;
    position: relative;
    z-index: 15;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(0, 0, 0, 0.8);
    color: var(--silver);
    padding: 8px 20px;
    border: 1px solid var(--silver);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-headline-sub {
    display: block;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0.95;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-headline-main {
    display: block;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.hero-headline-main strong {
    color: var(--white);
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subheadline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subheadline strong {
    color: var(--white);
    font-weight: 700;
}

/* Highlight emphasis for key phrases */
.highlight-emphasis {
    position: relative;
    font-weight: 700;
    color: var(--white);
}

.hero-cta {
    margin-top: 50px;
}

.hero-cta-note {
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.hero-stats-note {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item-large {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 153, 255, 0.15));
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 20px;
    padding: 30px 40px;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-item-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.5);
    border-color: rgba(0, 212, 255, 0.8);
}

.stat-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    color: #000000;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.5);
}

.stat-number {
    font-size: 72px;
    font-weight: 900;
    font-family: var(--font-en);
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: none;
    margin-bottom: 12px;
}

.stat-number span {
    font-size: 36px;
    font-weight: 900;
    margin-left: 2px;
}

.stat-label {
    margin-top: 10px;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

/* === COUNTDOWN TIMER === */
.countdown-timer {
    width: 100%;
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 50%, #1a2332 100%);
    padding: 35px 20px;
    margin: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-timer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1), rgba(0, 212, 255, 0.05));
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.countdown-logo {
    display: none;
}

.countdown-title {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    position: relative;
    z-index: 1;
}

.countdown-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.countdown-value {
    font-size: 64px;
    font-weight: 900;
    color: #00d4ff;
    font-family: var(--font-en);
    line-height: 1;
    min-width: 90px;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6), 0 4px 12px rgba(0, 0, 0, 0.5);
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.countdown-separator {
    font-size: 52px;
    font-weight: 700;
    color: rgba(0, 212, 255, 0.6);
    line-height: 1;
    margin: 0 5px;
    align-self: flex-start;
    margin-top: 8px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--silver);
    font-size: 24px;
    animation: bounce 2s ease-in-out infinite;
    z-index: 2;
}

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

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-jp);
}

.btn-primary {
    background: linear-gradient(135deg, var(--silver-light), var(--silver));
    color: var(--black);
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(192, 192, 192, 0.5);
}

.btn-lg {
    padding: 20px 50px;
    font-size: 20px;
}

.btn-xl {
    padding: 24px 60px;
    font-size: 22px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn i {
    margin-right: 10px;
}

/* === SECTION COMMON === */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-en);
    color: var(--silver);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 20px;
}

/* PC: sp-only br を非表示にして1行化 */
@media (min-width: 769px) {
    br.sp-only {
        display: none;
    }
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    line-height: 1.8;
}

/* === PAIN SECTION === */
.pain-section {
    background: var(--black-soft);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.pain-stories {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pain-story {
    background: var(--gray-dark);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: none;
    border: 1px solid rgba(192, 192, 192, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.pain-story:hover {
    transform: translateY(-5px);
    border-color: var(--silver);
    box-shadow: 0 10px 40px rgba(192, 192, 192, 0.15);
}

.pain-icon {
    font-size: 80px;
    margin-bottom: 25px;
    display: inline-block;
}

.pain-headline {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 35px;
    text-align: center;
}

.pain-narrative {
    font-size: 18px;
    line-height: 2;
    color: var(--silver-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pain-narrative p {
    margin-bottom: 18px;
    font-size: 18px;
}

.pain-emphasis {
    font-weight: 700;
    color: #ff4444;
    background: rgba(255, 68, 68, 0.15);
    padding: 12px 18px;
    border-radius: 8px;
    margin: 20px 0 !important;
    border-left: 3px solid #ff4444;
}

.pain-regret {
    font-style: italic;
    color: var(--gray-medium);
    font-size: 15px;
    border-left: 4px solid var(--gray-medium);
    padding-left: 15px;
    margin-top: 20px !important;
}

.pain-conclusion {
    margin-top: 60px;
    margin-bottom: 120px;
    text-align: center;
}

.conclusion-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.8;
}

.conclusion-text strong {
    color: var(--white);
    font-weight: 900;
}

.pain-truth {
    background: var(--gray-dark);
    color: var(--white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.truth-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--silver-light);
}

.truth-text {
    font-size: 18px;
    line-height: 2;
}

.truth-text strong {
    background: transparent;
    color: var(--silver-light);
    padding: 0;
    border-radius: 0;
    border-bottom: 2px solid var(--silver);
}

/* === SOLUTION SECTION === */
.solution-section {
    background: var(--black);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

/* 3ステップ画像 */
.solution-3steps-image {
    margin-bottom: 56px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.solution-3steps-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.steps-showcase-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    display: block;
    margin: 0 auto;
}

.product-image-large {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background: linear-gradient(135deg, var(--gray-dark), var(--black-soft));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    border: 1px solid rgba(192, 192, 192, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.product-image-large i {
    font-size: 120px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.product-image-large p {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-en);
}

/* Product Video Container */
.product-video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(192, 192, 192, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    position: relative;
    padding-left: 80px;
}

.feature-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: transparent;
    color: var(--silver);
    border: 2px solid var(--silver);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    font-family: var(--font-en);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.4;
}

.feature-description {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.8;
}

/* === USE CASE SECTION === */
.usecase-section {
    background: var(--black-soft);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

/* Use Case Video Container */
.usecase-video-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 60px;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for vertical video */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(192, 192, 192, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.usecase-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.usecase-grid {
    display: grid;
    gap: 40px;
}

.usecase-card {
    background: var(--gray-dark);
    padding: 40px;
    border-radius: 20px;
    box-shadow: none;
    border: 1px solid rgba(192, 192, 192, 0.1);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto 1fr;
    gap: 30px;
    align-items: center;
}

.usecase-title {
    grid-column: 1 / -1;
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(192, 192, 192, 0.2);
    text-align: center;
}

.usecase-before {
    grid-column: 1;
    grid-row: 2;
}

.usecase-arrow {
    grid-column: 2;
    grid-row: 2;
    font-size: 48px;
    color: var(--silver);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.usecase-after {
    grid-column: 3;
    grid-row: 2;
}

.usecase-title {
    grid-column: 1 / -1;
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(192, 192, 192, 0.2);
    text-align: center;
}

.usecase-before,
.usecase-after {
    padding: 25px;
    border-radius: 15px;
}

.usecase-before {
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.3);
}

.usecase-after {
    background: rgba(45, 122, 79, 0.1);
    border: 1px solid rgba(45, 122, 79, 0.3);
}

.label {
    display: block;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 900;
    font-family: var(--font-en);
    margin: 0 auto 20px;
    text-align: center;
    max-width: 150px;
    letter-spacing: 0.05em;
}

.label-before {
    background: transparent;
    color: #ff4444;
    border: 2px solid #ff4444;
}

.label-after {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.usecase-before p,
.usecase-after p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--white);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.usecase-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    margin: 15px auto;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.usecase-after strong {
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 20px;
    display: inline-block;
}



.transformation-metrics {
    margin-top: 80px;
    background: var(--gray-dark);
    padding: 60px;
    border-radius: 20px;
    color: var(--white);
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.metrics-title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 50px;
    color: var(--white);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Row 1: 大きいカード(左) + 小さいカード(右) */
.metric-card-large:nth-child(1) {
    grid-column: 1 / 8;  /* 7列分 */
}

.metric-card-small:nth-child(2) {
    grid-column: 8 / 13; /* 5列分 */
}

/* Row 2: 大きいカード(左寄せ) */
.metric-card-left:nth-child(3) {
    grid-column: 1 / 8;  /* 7列分 */
}

/* Row 3: 2つの小さいカード(右寄せ) */
.metric-card-small:nth-child(4) {
    grid-column: 6 / 9;  /* 3列分 */
}

.metric-card-small:nth-child(5) {
    grid-column: 9 / 13; /* 4列分 */
}

.metric-card {
    text-align: center;
    background: rgba(192, 192, 192, 0.03);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: none;
    border: 1px solid rgba(192, 192, 192, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.metric-card-large {
    min-height: 200px;
}

.metric-card-small {
    min-height: 180px;
}

.metric-value {
    font-size: 72px;
    font-weight: 900;
    font-family: var(--font-en);
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-value span {
    font-size: 32px;
    font-weight: 700;
    margin-left: 5px;
}

.metric-label {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 100%;
}

.metrics-note {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: var(--gray-medium);
    opacity: 0.7;
}

/* Total Time Recovered */
.total-time-recovered {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 255, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 153, 255, 0.2);
}

.total-time-value {
    font-size: 72px;
    font-weight: 900;
    font-family: var(--font-en);
    line-height: 1.2;
    margin-bottom: 20px;
    color: #00d4ff;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.total-time-value span {
    font-size: 48px;
    margin-left: 5px;
}

.total-time-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    opacity: 0.95;
    letter-spacing: 0.02em;
}

/* === COMPARISON SECTION === */
.comparison-section {
    background: var(--black);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    padding: 60px 0 100px;
}

.comparison-section .section-header {
    margin-bottom: 20px;
}

.comparison-section .section-title {
    margin-bottom: 40px;
}

/* Comparison Intro Text */
.comparison-intro {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    color: var(--white);
    margin: 50px auto 50px;
    max-width: 800px;
    padding: 0 20px;
}

.comparison-intro br {
    display: block;
    margin: 8px 0;
}

.bloom-highlight {
    font-weight: 900;
    font-size: 1.15em;
    color: var(--white);
    letter-spacing: 0.02em;
}

/* Comparison Video Container */
.comparison-video-container {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto; /* Remove bottom margin */
    padding-bottom: 125%; /* Tighter aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    border: none; /* Remove white border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.comparison-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: none;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 0;
}

.comparison-table table,
.comparison-table-inner {
    width: 100%;
    border-collapse: collapse;
    background: var(--gray-dark);
    box-shadow: none;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.comparison-table th,
.comparison-table-inner th {
    background: var(--black);
    color: var(--silver-light);
    padding: 18px 12px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
    line-height: 1.4;
    vertical-align: middle;
}

.comparison-table td,
.comparison-table-inner td {
    padding: 20px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    font-size: 15px;
    color: var(--gray-light);
    vertical-align: middle;
}

.method-col {
    text-align: left;
    width: 18%;
    min-width: 120px;
}

.check-col {
    width: 13.5%;
    min-width: 90px;
}

.method-name {
    text-align: left;
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
    white-space: nowrap;
}

.highlight-row {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 255, 0.2));
    border: 2px solid rgba(0, 212, 255, 0.6);
    box-shadow: 0 8px 30px rgba(0, 153, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.highlight-row td {
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    padding: 25px 12px;
}

.highlight-row .method-name {
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.highlight-row .icon-yes {
    color: #00d4ff;
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
}

.icon-yes {
    color: #22c55e;
    font-size: 20px;
}

.icon-no {
    color: #ef4444;
    font-size: 20px;
}

.icon-partial {
    color: #f59e0b;
    font-size: 24px;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    background: var(--black-soft);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--gray-dark);
    padding: 40px;
    border-radius: 20px;
    box-shadow: none;
    border: 1px solid rgba(192, 192, 192, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--silver);
    box-shadow: 0 10px 40px rgba(192, 192, 192, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    font-size: 60px;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.testimonial-situation {
    font-size: 14px;
    color: var(--gray-medium);
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray-light);
    margin-bottom: 25px;
    position: relative;
    padding: 16px 0 0 0;
    border-top: 2px solid rgba(192,192,192,0.2);
    text-align: center;
}

.testimonial-quote strong {
    color: var(--silver-light);
    font-weight: 700;
}

.testimonial-result {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 153, 255, 0.15));
    color: #00d4ff;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.4);
}

.testimonial-result i {
    margin-right: 8px;
    color: #00d4ff;
}

/* New testimonial layout: headline → quote → footer */
.testimonial-headline {
    font-size: 18px;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 18px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-align: center;
}

.testimonial-headline i {
    margin-right: 8px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(192, 192, 192, 0.12);
}

.testimonial-footer .testimonial-avatar {
    font-size: 32px;
    flex-shrink: 0;
}

.testimonial-footer .testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

/* === HOW IT WORKS SECTION === */
.howitworks-section {
    background: var(--black);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

/* 3 Steps Image */
.manual-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.steps-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    display: block;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--gray-dark);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.step-card:hover {
    background: var(--gray-dark);
    box-shadow: 0 10px 40px rgba(192, 192, 192, 0.15);
    transform: translateY(-5px);
    border-color: var(--silver);
}

.step-number {
    display: inline-block;
    background: transparent;
    color: var(--silver);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--silver);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-en);
    margin-bottom: 25px;
    letter-spacing: 0.1em;
}

.step-icon {
    font-size: 60px;
    color: var(--silver);
    margin-bottom: 25px;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.step-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-light);
}

/* Unlock Benefits */
.unlock-benefits {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1), rgba(0, 212, 255, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.unlock-icon {
    font-size: 48px;
    color: #00d4ff;
    margin-bottom: 20px;
}

.unlock-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.4;
}

.unlock-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* === SPECS SECTION === */
.specs-section {
    background: var(--black-soft);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

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

.product-image-specs {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(192, 192, 192, 0.3);
    display: block;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-item {
    background: var(--gray-dark);
    padding: 20px 30px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    align-items: center;
    box-shadow: none;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.spec-label {
    font-weight: 700;
    color: var(--silver);
    font-size: 15px;
}

.spec-value {
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.6;
}

/* === VALUE SECTION (Buy Once) === */
.value-section {
    background: var(--black);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    padding: 80px 20px;
}

.value-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.value-headline {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.value-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 50px;
}

.value-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.value-item {
    background: var(--gray-dark);
    border: 2px solid var(--silver);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.value-item i {
    font-size: 36px;
    color: #00d4ff;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    color: var(--gray-light);
    margin: 0;
}

.value-item-competitor {
    border-color: rgba(192, 192, 192, 0.3);
}

.value-item-competitor i {
    color: rgba(255, 255, 255, 0.3);
}

/* === TARGET AUDIENCE SECTION === */
.target-section {
    background: var(--black);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    padding: 80px 20px;
}

.target-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.target-item {
    background: var(--gray-dark);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.target-item:hover {
    border-color: var(--silver);
    box-shadow: 0 10px 40px rgba(192, 192, 192, 0.15);
    transform: translateY(-3px);
}

.target-item i {
    font-size: 32px;
    color: #00d4ff;
    flex-shrink: 0;
}

.target-item p {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

/* === FAQ SECTION === */
.faq-section {
    background: var(--black);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

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

.faq-item {
    background: var(--gray-dark);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.faq-item:hover {
    box-shadow: 0 10px 40px rgba(192, 192, 192, 0.15);
    border-color: var(--silver);
}

.faq-question {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    background: transparent;
}

.faq-question i {
    color: var(--silver);
    font-size: 24px;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 30px 25px 69px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray-light);
    background: transparent;
}

/* === PRICING SECTION (LINE PRE-REGISTRATION) === */
.pricing-section {
    background: var(--black-soft);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

/* LINE Benefits Grid */
.line-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: var(--gray-dark);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(192, 192, 192, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--silver);
    box-shadow: 0 10px 40px rgba(192, 192, 192, 0.15);
}

.benefit-icon {
    font-size: 60px;
    margin-bottom: 25px;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.benefit-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-light);
}

.benefit-description strong {
    color: var(--silver-light);
    font-weight: 700;
}

/* LINE CTA Main */
.line-cta-main {
    background: var(--gray-dark);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    border: 2px solid var(--silver);
    box-shadow: 0 20px 60px rgba(192, 192, 192, 0.2);
}

.line-icon-large {
    font-size: 80px;
    color: #06C755;
    margin-bottom: 30px;
}

.line-icon-large i {
    filter: drop-shadow(0 10px 20px rgba(6, 199, 85, 0.3));
}

.line-cta-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.4;
}

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

.line-cta-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray-medium);
}

/* LINE Button Style */
.btn-line {
    background: #06C755;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.4);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.btn-line:hover {
    background: #05b04d;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(6, 199, 85, 0.6);
}

.btn-line i {
    font-size: 26px;
    vertical-align: middle;
}

/* Pulse Animation for CTA */
.btn-pulse {
    animation: btn-pulse-animation 2s ease-in-out infinite;
}

@keyframes btn-pulse-animation {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(6, 199, 85, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 45px rgba(6, 199, 85, 0.7);
    }
}

.btn-pulse:hover {
    animation: none;
}

/* Keep old pricing styles for compatibility */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--gray-dark);
    border-radius: 20px;
    padding: 40px;
    box-shadow: none;
    border: 1px solid rgba(192, 192, 192, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(192, 192, 192, 0.2);
    border-color: var(--silver);
}

.pricing-featured {
    border: 2px solid var(--silver);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--silver);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-en);
}

.pricing-badge-popular {
    background: var(--silver-light);
    color: var(--black);
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    margin-top: 10px;
}

.pricing-price {
    margin-bottom: 15px;
}

.price-original {
    display: block;
    font-size: 18px;
    color: var(--gray-medium);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-discount {
    display: block;
    font-size: 48px;
    font-weight: 900;
    font-family: var(--font-en);
    color: var(--silver-light);
    line-height: 1;
}

.price-note {
    display: block;
    font-size: 13px;
    color: var(--gray-medium);
    margin-top: 5px;
}

.pricing-discount-rate {
    display: inline-block;
    background: var(--danger);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 25px;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray-light);
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

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

.pricing-features i {
    color: var(--silver);
    margin-right: 10px;
}

.pricing-limit {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--danger);
    margin-bottom: 20px;
    background: rgba(139, 0, 0, 0.2);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--danger);
}

.pricing-guarantee {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gray-dark);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.guarantee-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--silver-light);
}

.guarantee-title i {
    margin-right: 10px;
}

.guarantee-text {
    font-size: 16px;
    line-height: 1.9;
}

/* === FINAL CTA SECTION === */
.final-cta-section {
    position: relative;
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 120px 0;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    overflow: hidden;
}

/* Final CTA Background Video */
.final-cta-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.final-cta-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56.25vh;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.final-cta-section .container {
    position: relative;
    z-index: 2;
}

.final-cta-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.8);
}

.final-cta-text {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.8);
}

.final-cta-buttons {
    margin-bottom: 20px;
}

.final-cta-note {
    font-size: 14px;
    opacity: 0.8;
}

/* === FOOTER === */
.footer {
    background: var(--black-soft);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

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

.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo {
    font-size: 40px;
    font-weight: 900;
    font-family: var(--font-en);
}

.footer-tagline {
    font-size: 14px;
    opacity: 0.7;
    font-family: var(--font-en);
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(192, 192, 192, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--silver);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-copyright {
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
    padding-top: 20px;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    width: 100%;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-headline-main {
        font-size: 40px;
    }
    
    .product-showcase,
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-video-container,
    .steps-showcase-image {
        max-width: 100%;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
        --container-padding: 0 15px;
    }
    
    /* Prevent horizontal overflow */
    * {
        max-width: 100%;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Hero Section Mobile */
    .hero-headline-sub {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .hero-headline-main {
        font-size: 28px;
        line-height: 1.4;
    }
    
    .hero-subheadline {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .hero-video-section {
        min-height: auto;
        width: 100%;
    }
    
    .hero-video-container {
        max-width: 100%;
        padding: 15px;
        width: 100%;
    }
    
    .hero-video-wrapper {
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
        width: 100%;
    }
    
    .hero-text-overlay .container {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .hero-text-overlay {
        padding-top: 30px;
    }
    
    .hero-eyebrow-top {
        padding: 70px 15px 0;
    }
    
    .hero-eyebrow {
        font-size: 10px;
        padding: 6px 14px;
        margin-bottom: 10px;
    }
    
    /* CTA Buttons Mobile - SMALLER */
    .hero-cta {
        margin-top: 30px;
    }
    
    .btn-line {
        padding: 14px 24px !important;
        font-size: 15px !important;
        white-space: nowrap;
        max-width: 90%;
        margin: 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-line i {
        font-size: 18px;
        margin-right: 8px;
    }
    
    .hero-cta-note {
        font-size: 12px;
        padding: 0 15px;
        margin-top: 12px;
    }
    
    /* Countdown Timer Mobile */
    .countdown-timer {
        padding: 25px 10px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .countdown-title {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .countdown-display {
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .countdown-value {
        font-size: 36px;
        min-width: 50px;
    }
    
    .countdown-label {
        font-size: 9px;
    }
    
    .countdown-separator {
        font-size: 28px;
        margin: 0 2px;
    }
    
    /* Stats Mobile */
    .stat-item-large {
        min-width: 100%;
        padding: 20px 25px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-number span {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 28px;
        line-height: 1.4;
        padding: 0 15px;
    }

    /* nowrap指定のタイトルはvwで自動縮小 */
    .section-title[style*="nowrap"] {
        font-size: clamp(22px, 6vw, 28px);
    }
    
    .section-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }
    
    /* Video Containers Mobile */
    .product-video-container,
    .usecase-video-container,
    .comparison-video-container {
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }
    
    /* Use Case Mobile */
    .usecase-title {
        font-size: 18px;
        padding: 0 10px;
    }
    
    .usecase-before p,
    .usecase-after p {
        font-size: 14px;
        padding: 0 10px;
    }
    
    /* Comparison Table Mobile */
    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    .comparison-table table {
        min-width: 100%;
        font-size: 11px;
    }
    
    .comparison-table th {
        padding: 12px 6px;
        font-size: 10px;
        line-height: 1.3;
    }
    
    .comparison-table td {
        padding: 15px 6px;
        font-size: 13px;
    }
    
    .method-name {
        font-size: 12px;
        white-space: normal;
    }
    
    .highlight-row .method-name {
        font-size: 15px;
    }
    
    .highlight-row td {
        padding: 20px 6px;
        font-size: 14px;
    }
    
    .highlight-row .icon-yes {
        font-size: 20px;
    }
    
    .icon-yes,
    .icon-no {
        font-size: 18px;
    }
    
    .comparison-intro {
        font-size: 15px;
        padding: 0 15px;
        margin: 30px auto;
    }
    
    /* Testimonials Mobile */
    .testimonial-quote {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .testimonial-name {
        font-size: 14px;
    }
    
    /* FAQ Mobile */
    .faq-question {
        font-size: 15px;
        padding: 15px;
    }
    
    .faq-answer {
        font-size: 14px;
        padding: 15px;
    }
    
    /* Pricing/CTA Section Mobile */
    .line-benefits {
        gap: 20px;
    }
    
    .benefit-title {
        font-size: 16px;
    }
    
    .benefit-description {
        font-size: 13px;
    }
    
    .line-cta-title {
        font-size: 20px;
        padding: 0 15px;
    }
    
    .line-cta-subtitle {
        font-size: 13px;
        padding: 0 15px;
    }
    
    /* Button Sizes Mobile */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .btn-xl {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    /* Footer Mobile */
    .footer-logo {
        font-size: 24px;
    }
    
    .footer-tagline {
        font-size: 13px;
    }
    
    /* How It Works Image Mobile */
    .manual-image {
        margin: 0 auto 40px;
        padding: 0 10px;
    }
    
    .steps-image {
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0, 212, 255, 0.25);
    }
    
    /* Unlock Benefits Mobile */
    .unlock-benefits {
        margin: 40px auto 0;
        padding: 30px 20px;
    }
    
    .unlock-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .unlock-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    /* Pain Section Mobile */
    .pain-stories {
        gap: 30px;
        padding: 0 15px;
    }
    
    .pain-story {
        padding: 35px 25px;
    }
    
    .pain-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }
    
    .pain-headline {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .pain-narrative {
        font-size: 16px;
        line-height: 1.9;
    }
    
    .pain-narrative p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .unlock-description {
        font-size: 14px;
        line-height: 1.7;
    }
}
    }
    
    .hero-content {
        padding: 30px 15px 40px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .pain-stories,
    .testimonials-grid,
    .steps-grid,
    .pricing-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    /* モバイルではすべてのメトリックカードをシンプルに1列表示 */
    .metric-card-large:nth-child(1),
    .metric-card-small:nth-child(2),
    .metric-card-left:nth-child(3),
    .metric-card-small:nth-child(4),
    .metric-card-small:nth-child(5) {
        grid-column: 1 / -1;
    }
    
    .metric-card {
        min-height: auto;
        padding: 30px 20px;
    }
    
    .metric-card-large,
    .metric-card-small {
        min-height: auto;
    }
    
    .metric-value {
        font-size: 48px;
        margin-bottom: 12px;
    }
    
    .metric-label {
        font-size: 14px;
    }
    
    .total-time-value {
        font-size: 48px;
    }
    
    .total-time-value span {
        font-size: 32px;
    }
    
    .total-time-label {
        font-size: 16px;
    }
    
    .usecase-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 20px;
    }
    
    .usecase-title {
        grid-column: 1;
        grid-row: 1;
        font-size: 20px;
    }
    
    .usecase-before {
        grid-column: 1;
        grid-row: 2;
    }
    
    .usecase-arrow {
        grid-column: 1;
        grid-row: 3;
        font-size: 32px;
        padding: 10px 0;
    }
    
    .usecase-after {
        grid-column: 1;
        grid-row: 4;
    }
    
    .label {
        font-size: 16px;
        padding: 6px 16px;
    }
    
    /* Value Section Mobile */
    .value-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-description {
        font-size: 16px;
    }
    
    .value-item {
        padding: 25px 20px;
    }
    
    /* Target Section Mobile */
    .target-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .target-item {
        padding: 25px 20px;
    }
    
    .target-item i {
        font-size: 28px;
    }
    
    .target-item p {
        font-size: 15px;
    }
    
    .usecase-image {
        max-width: 100%;
        margin: 10px auto;
    }
    
    .spec-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-intro {
        font-size: 17px;
        margin: 40px auto 40px;
        padding: 0 15px;
        line-height: 1.7;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
    
    .pricing-featured {
        transform: scale(1);
    }
    
    .final-cta-title {
        font-size: 28px;
    }
    
    .final-cta-text {
        font-size: 16px;
    }
    
    .btn-xl {
        padding: 18px 40px;
        font-size: 18px;
    }
}
