/* ========================================
   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;
}

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

/* === 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: 12px;
}

.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;
    min-height: 100vh;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* For vertical video (9:16 aspect ratio) - optimize for clarity */
    width: 56.25vh; /* 9/16 = 0.5625 */
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
}

/* Adjust for wide screens to show vertical video properly */
@media (min-aspect-ratio: 9/16) {
    .hero-video-bg iframe {
        width: 177.78vh; /* 100 / (9/16) = 177.78 */
        height: 100%;
    }
}

/* Adjust for tall screens */
@media (max-aspect-ratio: 9/16) {
    .hero-video-bg iframe {
        width: 100%;
        height: 177.78vw; /* Keep vertical video aspect ratio */
    }
}

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

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

.hero-eyebrow {
    display: inline-block;
    background: transparent;
    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;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-headline-main strong {
    background: linear-gradient(135deg, var(--silver-light), var(--silver));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.9)) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8));
}

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

.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;
}

.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 {
    margin-top: 60px;
    text-align: center;
}

.countdown-logo {
    margin-bottom: 20px;
}

.countdown-logo img {
    height: 60px;
    width: auto;
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.9));
}

.countdown-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--silver);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.8);
}

.countdown-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

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

.countdown-value {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-en);
    line-height: 1;
    text-shadow: none;
    min-width: 80px;
    background-color: rgba(0, 150, 255, 0.1);
    padding: 20px 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 150, 255, 0.3);
}

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

.countdown-separator {
    font-size: 48px;
    font-weight: 700;
    color: var(--silver);
    line-height: 1;
    margin: 0 5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.8);
}

.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;
}

.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: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.pain-story {
    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;
}

.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: 60px;
    margin-bottom: 20px;
}

.pain-headline {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 25px;
}

.pain-narrative {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray-light);
}

.pain-narrative p {
    margin-bottom: 15px;
}

.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);
}

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

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

.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: flex;
    flex-direction: column;
    gap: 20px;
}

.usecase-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(192, 192, 192, 0.2);
}

.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: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-en);
    margin-bottom: 15px;
}

.label-before {
    background: var(--danger);
    color: var(--white);
}

.label-after {
    background: var(--success);
    color: var(--white);
}

.usecase-before p,
.usecase-after p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--white);
}

.usecase-after strong {
    color: var(--success);
    font-weight: 700;
}

.usecase-arrow {
    font-size: 32px;
    color: var(--silver);
    text-align: center;
}

.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: 32px;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--silver-light);
}

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

.metric-card {
    text-align: center;
    background: rgba(192, 192, 192, 0.03);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: none;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

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

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

.metric-label {
    font-size: 16px;
    opacity: 0.9;
}

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

/* === 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 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 {
    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 {
    background: var(--black);
    color: var(--silver-light);
    padding: 20px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

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

.method-col {
    text-align: left;
    width: 30%;
}

.check-col {
    width: 17.5%;
}

.method-name {
    text-align: left;
    font-weight: 600;
    color: var(--white);
}

.highlight-row {
    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);
    box-shadow: 0 4px 20px rgba(0, 153, 255, 0.2);
}

.highlight-row td {
    font-weight: 900;
    font-size: 20px;
    color: var(--white);
}

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

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

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

.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;
}

.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-left: 20px;
    border-left: 4px solid var(--silver);
}

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

.testimonial-result {
    background: rgba(45, 122, 79, 0.1);
    color: var(--success);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    border: 1px solid rgba(45, 122, 79, 0.3);
}

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

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

.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);
}

/* === 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;
}

/* === 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 {
        max-width: 100%;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-headline-sub {
        font-size: 18px;
    }
    
    .hero-headline-main {
        font-size: 32px;
    }
    
    .hero-subheadline {
        font-size: 16px;
    }
    
    .stat-item-large {
        min-width: 100%;
        padding: 25px 30px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .stat-number span {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    .product-image-placeholder {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }
    
    .product-image-placeholder i {
        font-size: 60px;
    }
    
    .product-video-container {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .usecase-video-container,
    .comparison-video-container {
        max-width: 100%;
        margin: 0 auto; /* Remove bottom margin */
        padding-bottom: 120%; /* Tighter for mobile */
    }
    
    .hero-video-bg iframe {
        /* For mobile, maintain aspect ratio */
        width: auto;
        height: 100%;
        min-width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .pain-stories,
    .testimonials-grid,
    .steps-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .usecase-arrow {
        transform: rotate(90deg);
    }
    
    .spec-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .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;
    }
}
