/* ===================================
   2100 CYBER DESIGN SYSTEM
   World's Most Advanced UI
   =================================== */

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

:root {
    /* Cyber Colors */
    --cyber-black: #000000;
    --cyber-dark: #0A0A0F;
    --cyber-gray: #1A1A24;
    --cyber-blue: #00F0FF;
    --cyber-purple: #8B5CF6;
    --cyber-gold: #FFD700;
    --cyber-white: #FFFFFF;
    --cyber-green: #00FF88;
    
    /* Neon Gradients */
    --neon-gradient: linear-gradient(135deg, #00F0FF 0%, #8B5CF6 50%, #FFD700 100%);
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --blue-gradient: linear-gradient(135deg, #00F0FF 0%, #0080FF 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--cyber-black);
    color: var(--cyber-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Cyber Grid Background */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: grid-flow 20s linear infinite;
}

@keyframes grid-flow {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

/* Scan Line Effect */
.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-blue), transparent);
    animation: scan 4s linear infinite;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.section-number {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: var(--cyber-blue);
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.title-line {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--cyber-blue);
    letter-spacing: 0.5em;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.title-main {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
}

.hero-logo {
    width: 200px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: float-logo 3s ease-in-out infinite;
}

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

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    pointer-events: none;
    animation: logo-pulse 2s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--cyber-white);
}

.neon-text {
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    display: inline-block;
    animation: neon-flicker 3s ease-in-out infinite;
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-line {
    width: 100px;
    height: 2px;
    background: var(--neon-gradient);
    margin: 40px auto;
    animation: line-expand 2s ease-in-out infinite;
}

@keyframes line-expand {
    0%, 100% { width: 100px; }
    50% { width: 200px; }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.cyber-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: var(--cyber-blue);
    text-shadow: 0 0 20px var(--cyber-blue), 0 0 40px var(--cyber-blue);
}

/* Cyber Buttons */
.btn-cyber {
    position: relative;
    display: inline-block;
    padding: 20px 60px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--cyber-blue);
    text-decoration: none;
    border: 2px solid var(--cyber-blue);
    background: transparent;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.btn-cyber:hover {
    background: var(--cyber-blue);
    color: var(--cyber-black);
    box-shadow: 0 0 30px var(--cyber-blue);
    transform: translateY(-3px);
}

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

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

.btn-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

/* Scroll Indicator */
.scroll-cyber {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--cyber-blue);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--cyber-blue), transparent);
    animation: scroll-flow 2s ease-in-out infinite;
}

@keyframes scroll-flow {
    0% { height: 0; opacity: 0; }
    50% { height: 50px; opacity: 1; }
    100% { height: 50px; opacity: 0; }
}

/* Problem Section */
.problem-section {
    padding: 150px 0;
    background: var(--cyber-dark);
    position: relative;
}

.reality-intro {
    max-width: 1000px;
    margin: 0 auto 80px;
    text-align: center;
}

.reality-statement {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.reality-statement strong {
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

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

.reality-card {
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 50px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.reality-card-warning {
    border: 1px solid rgba(255, 68, 68, 0.4);
    background: rgba(40, 10, 10, 0.6);
}

.reality-card-warning::before {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(255, 68, 68, 0.05) 100%);
}

.reality-card-warning:hover {
    border-color: var(--warning-red);
    box-shadow: 0 20px 60px rgba(255, 68, 68, 0.3);
}

.reality-card-warning h3 {
    color: var(--warning-red);
}

.reality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neon-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.reality-card:hover {
    border-color: var(--cyber-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3);
}

.reality-card:hover::before {
    opacity: 0.05;
}

.reality-card > * {
    position: relative;
    z-index: 1;
}

.reality-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.reality-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--cyber-blue);
}

.reality-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Loss Box */
.loss-box {
    background: rgba(10, 10, 15, 0.8);
    border: 2px solid var(--cyber-purple);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.loss-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    animation: loss-shine 3s linear infinite;
}

@keyframes loss-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.loss-header h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loss-title-gradient {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    text-align: center;
    margin-bottom: 60px !important;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    line-height: 1.4;
}

.loss-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-weight: 300;
}

.loss-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: rgba(0, 240, 255, 0.05);
    border-top: 2px solid var(--cyber-blue);
    position: relative;
    z-index: 1;
}

.loss-cta-text {
    font-size: 1.4rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
}

.loss-cta-text strong {
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.6rem;
}

.loss-cta-key {
    display: inline-block;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.05em;
}

.key-line1,
.key-line2 {
    display: inline;
}

/* スマホで美しい改行 */
@media (max-width: 768px) {
    .loss-cta-text {
        font-size: 1.2rem;
        line-height: 1.8;
    }
    
    .loss-cta-text strong {
        font-size: 1.8rem;
        display: block;
        margin: 20px 0;
        line-height: 1.5;
    }
    
    .loss-cta-key {
        display: block;
        text-align: center;
    }
    
    .key-line1,
    .key-line2 {
        display: block;
    }
    
    .loss-cta-line1,
    .loss-cta-line2,
    .loss-cta-line3 {
        display: block;
    }
}

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

.loss-item {
    position: relative;
    z-index: 1;
}

.loss-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--cyber-purple);
    margin-bottom: 15px;
    opacity: 0.3;
}

.loss-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--cyber-blue);
}

.loss-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* Solution Section */
.solution-section {
    padding: 150px 0;
    background: var(--cyber-black);
}

.solution-main {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.solution-main h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.solution-main p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.solution-highlight {
    margin-top: 60px;
    padding: 40px 60px;
    background: rgba(0, 240, 255, 0.08);
    border: 3px solid var(--cyber-blue);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3);
}

.solution-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--cyber-blue), transparent);
    opacity: 0.15;
    animation: rotate-gradient 4s linear infinite;
}

.solution-key {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.08em;
    display: block;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: pulse-text 3s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(0, 240, 255, 0.5);
}

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

/* スマホで美しい改行 */
@media (max-width: 768px) {
    .solution-main h3 {
        font-size: 1.5rem;
        line-height: 1.6;
    }
    
    .solution-main p {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .solution-title-line1,
    .solution-title-line2,
    .solution-text-line1,
    .solution-text-line2,
    .solution-text-line3 {
        display: block;
    }
    
    .solution-main p strong {
        font-size: 1.1rem;
    }
    
    .solution-highlight {
        padding: 30px 20px;
        margin-top: 50px;
    }
    
    .solution-key {
        font-size: 1.5rem;
        letter-spacing: 0.05em;
    }
}

/* Features Cyber */
.features-cyber {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-cyber {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(26, 26, 36, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-cyber::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 0;
    background: var(--neon-gradient);
    transition: height 0.4s ease;
}

.feature-cyber:hover::before {
    height: 100%;
}

.feature-cyber:hover {
    border-color: var(--cyber-blue);
    transform: translateX(10px);
}

.feature-number {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    color: var(--cyber-blue);
    opacity: 0.1;
    line-height: 1;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--cyber-blue);
}

.feature-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.feature-glow {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-cyber:hover .feature-glow {
    opacity: 1;
}

/* Specs Section */
.specs-section {
    padding: 150px 0;
    background: var(--cyber-dark);
}

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

.spec-card {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--cyber-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate-gradient 4s linear infinite;
}

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

.spec-card:hover::before {
    opacity: 0.1;
}

.spec-card:hover {
    border-color: var(--cyber-blue);
    transform: scale(1.05);
}

.spec-card > * {
    position: relative;
    z-index: 1;
}

.spec-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.spec-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--cyber-blue);
}

.spec-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Pricing Section */
.pricing-section {
    padding: 150px 0;
    background: var(--cyber-black);
}

.pricing-main {
    max-width: 700px;
    margin: 0 auto 100px;
}

.pricing-cyber {
    background: rgba(10, 10, 15, 0.9);
    border: 3px solid var(--cyber-gold);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.3);
}

.pricing-cyber::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-gradient);
    opacity: 0.1;
    z-index: 0;
}

.pricing-cyber > * {
    position: relative;
    z-index: 1;
}

.pricing-header-cyber {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header-cyber h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
}

.pricing-badge-cyber {
    display: inline-block;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    padding: 8px 20px;
    background: var(--gold-gradient);
    color: var(--cyber-black);
    font-weight: 700;
}

.pricing-amount {
    text-align: center;
    margin: 50px 0;
}

.amount-number {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.amount-currency {
    font-size: 1.5rem;
    color: var(--cyber-gold);
    margin-left: 10px;
}

.pricing-features-cyber {
    margin: 40px 0;
}

.pricing-feature-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.btn-cyber-pricing {
    display: block;
    width: 100%;
    padding: 20px;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-align: center;
    text-decoration: none;
    background: var(--gold-gradient);
    color: var(--cyber-black);
    border: none;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.btn-cyber-pricing:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.5);
}

/* Options Section */
.options-section {
    max-width: 1000px;
    margin: 0 auto;
}

.options-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 0.3em;
    margin-bottom: 60px;
    color: var(--cyber-blue);
}

.options-grid {
    display: grid;
    gap: 30px;
}

.option-cyber {
    background: rgba(26, 26, 36, 0.6);
    border: 2px solid rgba(0, 240, 255, 0.3);
    padding: 40px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: all 0.3s ease;
}

.option-cyber:hover {
    border-color: var(--cyber-blue);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.option-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.option-info h4 {
    font-size: 1.5rem;
    color: var(--cyber-blue);
    margin-bottom: 8px;
}

.option-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.option-price {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--cyber-gold);
    flex-shrink: 0;
    white-space: nowrap;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--cyber-dark);
}

.stats-cyber {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
}

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

.stat-cyber::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--neon-gradient);
}

.stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.stat-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--cyber-blue);
}

/* Contact Section */
.contact-section {
    padding: 150px 0;
    background: var(--cyber-black);
}

.contact-cyber {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(10, 10, 15, 0.8);
    border: 2px solid var(--cyber-blue);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.contact-cyber::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-cyber > * {
    position: relative;
    z-index: 1;
}

.contact-cyber h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--cyber-gold);
}

.contact-service {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
}

.contact-details {
    margin: 40px 0 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-link {
    color: var(--cyber-blue);
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyber-blue);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: var(--cyber-gold);
    text-shadow: 0 0 20px var(--cyber-blue);
}

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

.btn-cyber-large {
    display: inline-block;
    padding: 25px 80px;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-decoration: none;
    background: var(--blue-gradient);
    color: var(--cyber-white);
    border: none;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.btn-cyber-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.5);
}

/* Footer */
.footer-cyber {
    padding: 80px 0 40px;
    background: var(--cyber-dark);
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

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

.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 30px;
    opacity: 0.7;
}

.footer-company {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--cyber-gold);
    margin-bottom: 15px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(1000px) rotateY(-20deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(1000px) rotateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .feature-cyber {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-number {
        font-size: 4rem;
    }
}

/* SP用改行（PCでは非表示） */
.sp-br {
    display: none;
}

/* PCでは改行を無効化 */
@media (min-width: 769px) {
    .loss-cta-line1,
    .loss-cta-line2,
    .loss-cta-line3,
    .solution-title-line1,
    .solution-title-line2,
    .solution-text-line1,
    .solution-text-line2,
    .solution-text-line3 {
        display: inline;
    }
    
    .loss-cta-text br,
    .solution-main h3 br,
    .solution-main p br {
        display: none;
    }
}

@media (max-width: 768px) {
    .sp-br {
        display: inline;
    }
    
    .hero-logo {
        width: 150px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .cyber-text {
        font-size: 1.5rem;
    }
    
    .reality-grid,
    .loss-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .option-cyber {
        flex-direction: column;
        text-align: center;
    }
    
    .option-header {
        flex-direction: column;
        text-align: center;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .pricing-cyber,
    .contact-cyber {
        padding: 50px 30px;
    }
    
    .amount-number {
        font-size: 4rem;
    }
    
    .contact-details {
        gap: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-logo {
        width: 120px;
    }
    
    .btn-cyber {
        padding: 15px 40px;
        font-size: 0.9rem;
    }
    
    .reality-card,
    .loss-box {
        padding: 40px 25px;
    }
    
    .stat-value {
        font-size: 3.5rem;
    }
}