/* ==========================================
   MACHINE GUN CREATIVE - EXPLOSIVE DESIGN
   ========================================== */

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

:root {
    /* EXPLOSIVE PINK COLORS */
    --pink-nuclear: #FF0080;
    --pink-mega: #FF0099;
    --pink-explosion: #FF00CC;
    --pink-glow: rgba(255, 0, 128, 0.6);
    --pink-shadow: 0 0 40px rgba(255, 0, 128, 0.8);
    
    /* Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray: #333333;
    
    /* Gradients */
    --gradient-explosive: linear-gradient(135deg, #FF0080 0%, #FF00CC 50%, #FF0080 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
    color: var(--black);
    background: var(--black);
    overflow-x: hidden;
    line-height: 1.2;
}

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

.pc-only {
    display: inline;
}

.sp-only {
    display: none;
}

/* ==========================================
   HEADER - COMPACT
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 3px solid var(--pink-nuclear);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.logo-icon {
    font-size: 36px;
    animation: gun-shake 1s ease-in-out infinite;
}

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

.logo-text {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--pink-nuclear);
    text-shadow: var(--pink-shadow);
}

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

.nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.nav a:hover {
    color: var(--pink-nuclear);
    text-shadow: var(--pink-shadow);
    transform: scale(1.1);
}

.nav-cta {
    background: var(--gradient-explosive);
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: var(--pink-shadow);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 128, 0.5); }
    50% { box-shadow: 0 0 60px rgba(255, 0, 128, 1); }
}

.mobile-menu-btn {
    display: none;
}

/* ==========================================
   HERO - EXPLOSIVE IMPACT
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
    padding: 120px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--pink-nuclear) 0%, var(--black) 60%);
    opacity: 0.3;
    animation: bg-pulse 3s ease-in-out infinite;
}

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

.gun-bullets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gun-bullets span {
    position: absolute;
    font-size: 60px;
    opacity: 0.2;
    animation: bullet-fly 3s linear infinite;
}

.gun-bullets span:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.gun-bullets span:nth-child(2) { top: 20%; left: 80%; animation-delay: 0.5s; }
.gun-bullets span:nth-child(3) { top: 40%; left: 20%; animation-delay: 1s; }
.gun-bullets span:nth-child(4) { top: 60%; left: 70%; animation-delay: 1.5s; }
.gun-bullets span:nth-child(5) { top: 80%; left: 30%; animation-delay: 2s; }
.gun-bullets span:nth-child(6) { top: 15%; left: 50%; animation-delay: 0.3s; }
.gun-bullets span:nth-child(7) { top: 35%; left: 90%; animation-delay: 0.8s; }
.gun-bullets span:nth-child(8) { top: 55%; left: 15%; animation-delay: 1.3s; }
.gun-bullets span:nth-child(9) { top: 75%; left: 85%; animation-delay: 1.8s; }
.gun-bullets span:nth-child(10) { top: 90%; left: 60%; animation-delay: 2.3s; }

@keyframes bullet-fly {
    0% { transform: translateX(0) rotate(0deg); opacity: 0.2; }
    50% { opacity: 0.5; }
    100% { transform: translateX(200px) rotate(360deg); opacity: 0; }
}

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

.explosion {
    font-size: 120px;
    margin-bottom: 20px;
    animation: explode 1s ease-in-out infinite;
}

@keyframes explode {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
    margin-bottom: 40px;
}

.mega-text {
    display: block;
    font-size: 140px;
    font-weight: 900;
    line-height: 0.95;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-shadow: 
        0 0 20px var(--pink-nuclear),
        0 0 40px var(--pink-nuclear),
        5px 5px 0 rgba(0,0,0,0.5);
}

.pink-text {
    color: var(--pink-nuclear);
    text-shadow: 
        0 0 15px rgba(255, 0, 128, 0.5),
        5px 5px 0 rgba(0,0,0,0.5);
    animation: text-glow 2s ease-in-out infinite;
}

@keyframes text-glow {
    0%, 100% { 
        text-shadow: 
            0 0 15px rgba(255, 0, 128, 0.5),
            5px 5px 0 rgba(0,0,0,0.5);
    }
    50% { 
        text-shadow: 
            0 0 25px rgba(255, 0, 128, 0.7),
            5px 5px 0 rgba(0,0,0,0.5);
    }
}

.hero-subtitle {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 60px;
    text-shadow: 0 0 20px var(--pink-nuclear);
}

.hero-impact {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
}

.impact-word {
    font-size: 56px;
    font-weight: 900;
    color: var(--pink-nuclear);
    text-shadow: var(--pink-shadow);
    animation: impact-bounce 1.5s ease-in-out infinite;
}

.impact-word:nth-child(2) {
    animation-delay: 0.2s;
}

.impact-word:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes impact-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.btn-explode {
    display: inline-block;
    font-size: 36px;
    font-weight: 900;
    padding: 30px 80px;
    background: var(--gradient-explosive);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    box-shadow: 
        0 0 40px var(--pink-nuclear),
        0 20px 60px rgba(255, 0, 128, 0.5);
    transition: all 0.3s;
    animation: btn-pulse 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes btn-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 40px var(--pink-nuclear),
            0 20px 60px rgba(255, 0, 128, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 0 80px var(--pink-nuclear),
            0 20px 80px rgba(255, 0, 128, 0.8);
    }
}

.btn-explode:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 100px var(--pink-nuclear),
        0 30px 100px rgba(255, 0, 128, 1);
}

/* ==========================================
   PROBLEM - MEGA IMPACT
   ========================================== */
.problem {
    padding: 150px 0;
    background: var(--white);
    text-align: center;
}

.mega-title {
    font-size: 100px;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.1;
}

.problem-text {
    color: var(--gray);
    font-size: 60px;
}

.problem-text-big {
    color: var(--pink-nuclear);
    font-size: 120px;
    text-shadow: 
        0 0 10px rgba(255, 0, 128, 0.3),
        3px 3px 0 rgba(0,0,0,0.2);
    display: inline-block;
    animation: shake 0.5s ease-in-out infinite;
}

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

.gun-icon {
    font-size: 80px;
    display: inline-block;
    animation: gun-rotate 2s linear infinite;
}

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

.problem-solution {
    margin-top: 80px;
}

.solution-arrow {
    font-size: 100px;
    color: var(--pink-nuclear);
    animation: arrow-bounce 1s ease-in-out infinite;
}

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

.solution-text {
    font-size: 80px;
    font-weight: 900;
    color: var(--pink-nuclear);
    text-shadow: 
        0 0 15px rgba(255, 0, 128, 0.4),
        3px 3px 0 rgba(0,0,0,0.2);
    margin-top: 20px;
}

/* ==========================================
   FEATURES - 全部お任せ
   ========================================== */
.features {
    padding: 150px 0;
    background: var(--black);
}

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

.title-line {
    display: block;
    font-size: 60px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
}

.pink-huge {
    font-size: 140px;
    color: var(--pink-nuclear);
    text-shadow: var(--pink-shadow);
}

.features-intro {
    text-align: center;
    margin-bottom: 100px;
}

.intro-text {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.intro-text-big {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.4;
}

.pink-highlight {
    color: var(--pink-nuclear);
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.5);
}

.features-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid var(--pink-nuclear);
    border-radius: 24px;
    padding: 50px 40px;
    transition: all 0.3s;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 50px var(--pink-nuclear);
    background: rgba(255, 0, 128, 0.1);
}

.detail-number {
    font-size: 16px;
    font-weight: 900;
    color: var(--pink-nuclear);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.detail-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

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

.detail-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.features-final {
    text-align: center;
    padding: 80px 0;
    background: rgba(255, 0, 128, 0.1);
    border: 5px solid var(--pink-nuclear);
    border-radius: 30px;
}

.final-impact {
    margin-bottom: 40px;
}

.final-text {
    display: block;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.final-big {
    display: block;
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
}

.final-zero {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
}

.zero-huge {
    font-size: 180px;
    font-weight: 900;
    color: var(--pink-nuclear);
    text-shadow: 
        0 0 30px var(--pink-nuclear),
        0 0 60px var(--pink-nuclear);
    line-height: 1;
    animation: zero-pulse 2s ease-in-out infinite;
}

@keyframes zero-pulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 
            0 0 30px var(--pink-nuclear),
            0 0 60px var(--pink-nuclear);
    }
    50% { 
        transform: scale(1.1);
        text-shadow: 
            0 0 50px var(--pink-nuclear),
            0 0 100px var(--pink-nuclear);
    }
}

.zero-label {
    font-size: 72px;
    font-weight: 900;
    color: var(--white);
}

/* ==========================================
   QUOTE - SNIPER
   ========================================== */
.quote-section {
    padding: 150px 0;
    background: var(--gradient-explosive);
    background-size: 200% 200%;
    animation: gradient-move 5s ease infinite;
}

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

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

.quote-icon {
    font-size: 120px;
    margin: 20px 0;
}

.quote-mega-text {
    display: block;
    font-size: 100px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 5px 5px 0 rgba(0,0,0,0.3);
}

.pink-glow {
    font-size: 140px;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.6),
        5px 5px 0 rgba(0,0,0,0.3);
    animation: super-glow 2s ease-in-out infinite;
}

@keyframes super-glow {
    0%, 100% { 
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.6),
            5px 5px 0 rgba(0,0,0,0.3);
    }
    50% { 
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 0.8),
            5px 5px 0 rgba(0,0,0,0.3);
        transform: scale(1.05);
    }
}

/* ==========================================
   STRENGTHS - 超シンプル
   ========================================== */
.strengths {
    padding: 150px 0;
    background: var(--white);
}

.strengths-impact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.strength-huge {
    text-align: center;
    padding: 60px 40px;
    background: var(--black);
    border-radius: 30px;
    transition: all 0.3s;
}

.strength-huge:hover {
    transform: scale(1.1);
    box-shadow: 0 0 60px var(--pink-nuclear);
}

.strength-emoji {
    font-size: 120px;
    margin-bottom: 30px;
}

.strength-word {
    font-size: 56px;
    font-weight: 900;
    color: var(--pink-nuclear);
    text-shadow: var(--pink-shadow);
}

/* ==========================================
   TOOLS - 超シンプル
   ========================================== */
.tools {
    padding: 100px 0;
    background: var(--black);
    text-align: center;
}

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

.tools-text {
    font-size: 70px;
    font-weight: 900;
    color: var(--white);
}

.tools-emoji {
    font-size: 100px;
}

/* ==========================================
   DIFFERENCE - WE ARE DIFFERENT
   ========================================== */
.difference {
    padding: 150px 0;
    background: var(--white);
    text-align: center;
}

.difference-mega {
    margin-bottom: 80px;
}

.diff-line {
    display: block;
    font-size: 70px;
    font-weight: 900;
    color: var(--gray);
    line-height: 1;
}

.diff-line-big {
    display: block;
    font-size: 140px;
    font-weight: 900;
    color: var(--pink-nuclear);
    text-shadow: var(--pink-shadow);
    line-height: 1;
}

.diff-emoji {
    font-size: 100px;
    display: block;
    margin-top: 20px;
}

.diff-vs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    font-size: 80px;
    font-weight: 900;
}

.diff-bad {
    color: var(--gray);
}

.diff-arrow {
    font-size: 100px;
    color: var(--pink-nuclear);
}

.diff-good {
    color: var(--pink-nuclear);
    text-shadow: var(--pink-shadow);
    animation: pop 1s ease-in-out infinite;
}

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

/* ==========================================
   PLATFORMS - 全媒体対応
   ========================================== */
.platforms {
    padding: 100px 0;
    background: var(--black);
    text-align: center;
}

.platforms-title {
    margin-bottom: 80px;
}

.platforms-big {
    font-size: 80px;
    font-weight: 900;
    color: var(--white);
}

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

.platform-item {
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid var(--pink-nuclear);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s;
}

.platform-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--pink-nuclear);
    background: rgba(255, 0, 128, 0.1);
}

.platform-icon-big {
    font-size: 80px;
    font-weight: 900;
    color: var(--pink-nuclear);
    margin-bottom: 20px;
}

.platform-name {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.platform-detail {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.platforms-more {
    margin-top: 40px;
}

.more-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--pink-nuclear);
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.4);
}

/* ==========================================
   OPERATOR - 運営会社
   ========================================== */
.operator {
    padding: 120px 0;
    background: var(--white);
    text-align: center;
}

.operator-content-new {
    max-width: 800px;
    margin: 0 auto;
}

.operator-icon-big {
    font-size: 120px;
    margin-bottom: 20px;
    animation: turtle-bounce 2s ease-in-out infinite;
}

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

.operator-title-big {
    font-size: 80px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.operator-tagline {
    font-size: 24px;
    color: var(--gray);
    margin-bottom: 60px;
    font-weight: 600;
}

.operator-message {
    background: var(--gray-50);
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 3px solid var(--black);
}

.message-big {
    font-size: 48px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.message-highlight {
    color: var(--pink-nuclear);
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.4);
}

.message-sub {
    font-size: 20px;
    color: var(--gray);
    font-weight: 600;
}

.operator-btn {
    display: inline-block;
    font-size: 28px;
    font-weight: 900;
    padding: 24px 60px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s;
    margin-bottom: 40px;
}

.operator-btn:hover {
    background: var(--pink-nuclear);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 0, 128, 0.5);
}

.operator-company {
    font-size: 20px;
    color: var(--gray);
    font-weight: 600;
}

/* ==========================================
   CTA - 最終インパクト
   ========================================== */
.cta {
    padding: 200px 0;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, var(--pink-nuclear) 0%, transparent 70%);
    opacity: 0.3;
    animation: cta-pulse 3s ease-in-out infinite;
}

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

.cta-massive {
    position: relative;
    z-index: 10;
}

.cta-explosion {
    font-size: 150px;
    margin-bottom: 30px;
    animation: explode-crazy 1s ease-in-out infinite;
}

@keyframes explode-crazy {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.5) rotate(180deg); opacity: 0.7; }
}

.cta-mega-title {
    margin-bottom: 40px;
}

.cta-line {
    display: block;
    font-size: 80px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.cta-line-huge {
    display: block;
    font-size: 180px;
    font-weight: 900;
    color: var(--pink-nuclear);
    text-shadow: 
        0 0 20px rgba(255, 0, 128, 0.5),
        8px 8px 0 rgba(0,0,0,0.5);
    line-height: 1;
    animation: cta-glow 2s ease-in-out infinite;
}

@keyframes cta-glow {
    0%, 100% { 
        text-shadow: 
            0 0 20px rgba(255, 0, 128, 0.5),
            8px 8px 0 rgba(0,0,0,0.5);
    }
    50% { 
        text-shadow: 
            0 0 35px rgba(255, 0, 128, 0.7),
            8px 8px 0 rgba(0,0,0,0.5);
        transform: scale(1.05);
    }
}

.cta-gun {
    font-size: 120px;
    margin: 40px 0 80px;
    animation: gun-fire 0.5s ease-in-out infinite;
}

@keyframes gun-fire {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

.btn-mega {
    display: inline-block;
    font-size: 42px;
    font-weight: 900;
    padding: 40px 100px;
    margin: 20px;
    background: var(--gradient-explosive);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    box-shadow: 
        0 0 60px var(--pink-nuclear),
        0 30px 80px rgba(255, 0, 128, 0.6);
    transition: all 0.3s;
    text-transform: uppercase;
    animation: mega-pulse 2s ease-in-out infinite;
}

@keyframes mega-pulse {
    0%, 100% { 
        box-shadow: 
            0 0 60px var(--pink-nuclear),
            0 30px 80px rgba(255, 0, 128, 0.6);
    }
    50% { 
        box-shadow: 
            0 0 100px var(--pink-nuclear),
            0 30px 120px rgba(255, 0, 128, 1);
    }
}

.btn-mega:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 120px var(--pink-nuclear),
        0 40px 150px rgba(255, 0, 128, 1);
}

.cta-info-small {
    margin-top: 60px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   FOOTER - シンプル
   ========================================== */
.footer {
    padding: 60px 0;
    background: var(--black);
    border-top: 3px solid var(--pink-nuclear);
}

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

.footer-brand {
    font-size: 32px;
    font-weight: 900;
    color: var(--pink-nuclear);
    text-shadow: var(--pink-shadow);
    margin-bottom: 20px;
}

.footer-small {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   FORM SECTION - White Background
   ========================================== */
.form-section {
    background: var(--white);
    padding: 80px 0;
}

.form-cta {
    text-align: center;
    margin-bottom: 24px;
}

.form-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 8px;
}

.form-sub {
    font-size: 16px;
    color: var(--gray);
}

@media (max-width: 768px) {
    .form-section {
        padding: 60px 0;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */

@media (max-width: 1024px) {
    .mega-text {
        font-size: 100px;
    }
    
    .pink-text {
        font-size: 100px;
    }
    
    .hero-subtitle {
        font-size: 36px;
    }
    
    .impact-word {
        font-size: 40px;
    }
    
    .hero-impact {
        gap: 30px;
    }
    
    .features-impact {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .strengths-impact {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .pc-only {
        display: none;
    }
    
    .sp-only {
        display: inline;
    }
    
    /* Header */
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .mobile-menu-btn span {
        display: block;
        width: 30px;
        height: 3px;
        background: var(--pink-nuclear);
        margin: 6px 0;
    }
    
    /* Hero */
    .explosion {
        font-size: 80px;
    }
    
    .mega-text {
        font-size: 56px;
    }
    
    .pink-text {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-impact {
        flex-direction: column;
        gap: 20px;
    }
    
    .impact-word {
        font-size: 32px;
    }
    
    .btn-explode {
        font-size: 24px;
        padding: 20px 40px;
    }
    
    /* Problem */
    .problem {
        padding: 100px 0;
    }
    
    .mega-title {
        font-size: 48px;
    }
    
    .problem-text {
        font-size: 32px;
    }
    
    .problem-text-big {
        font-size: 56px;
    }
    
    .gun-icon {
        font-size: 48px;
    }
    
    .solution-arrow {
        font-size: 60px;
    }
    
    .solution-text {
        font-size: 48px;
    }
    
    /* Features */
    .features {
        padding: 100px 0;
    }
    
    .title-line {
        font-size: 36px;
    }
    
    .pink-huge {
        font-size: 72px;
    }
    
    .intro-text {
        font-size: 22px;
    }
    
    .intro-text-big {
        font-size: 36px;
    }
    
    .features-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .detail-card {
        padding: 40px 30px;
    }
    
    .detail-icon {
        font-size: 60px;
    }
    
    .detail-title {
        font-size: 28px;
    }
    
    .detail-description {
        font-size: 16px;
    }
    
    .features-final {
        padding: 60px 20px;
    }
    
    .final-text {
        font-size: 24px;
    }
    
    .final-big {
        font-size: 40px;
    }
    
    .zero-huge {
        font-size: 120px;
    }
    
    .zero-label {
        font-size: 56px;
    }
    
    /* Quote */
    .quote-section {
        padding: 100px 0;
    }
    
    .quote-icon {
        font-size: 80px;
    }
    
    .quote-mega-text {
        font-size: 48px;
    }
    
    .pink-glow {
        font-size: 72px;
    }
    
    /* Strengths */
    .strengths {
        padding: 100px 0;
    }
    
    .strength-emoji {
        font-size: 80px;
    }
    
    .strength-word {
        font-size: 40px;
    }
    
    /* Tools */
    .tools-text {
        font-size: 40px;
    }
    
    .tools-emoji {
        font-size: 60px;
    }
    
    /* Difference */
    .difference {
        padding: 100px 0;
    }
    
    .diff-line {
        font-size: 40px;
    }
    
    .diff-line-big {
        font-size: 72px;
    }
    
    .diff-emoji {
        font-size: 60px;
    }
    
    .diff-vs {
        flex-direction: column;
        gap: 40px;
        font-size: 48px;
    }
    
    .diff-arrow {
        font-size: 60px;
        transform: rotate(90deg);
    }
    
    /* Platforms */
    .platforms-big {
        font-size: 48px;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .platform-icon-big {
        font-size: 60px;
    }
    
    .platform-name {
        font-size: 24px;
    }
    
    .platform-detail {
        font-size: 16px;
    }
    
    .more-text {
        font-size: 20px;
    }
    
    /* Operator */
    .operator {
        padding: 80px 0;
    }
    
    .operator-icon-big {
        font-size: 80px;
    }
    
    .operator-title-big {
        font-size: 48px;
    }
    
    .operator-tagline {
        font-size: 18px;
    }
    
    .operator-message {
        padding: 40px 30px;
    }
    
    .message-big {
        font-size: 32px;
    }
    
    .message-sub {
        font-size: 16px;
    }
    
    .operator-btn {
        font-size: 22px;
        padding: 20px 40px;
    }
    
    .operator-company {
        font-size: 16px;
    }
    
    /* CTA */
    .cta {
        padding: 120px 0;
    }
    
    .cta-explosion {
        font-size: 100px;
    }
    
    .cta-line {
        font-size: 48px;
    }
    
    .cta-line-huge {
        font-size: 100px;
    }
    
    .cta-gun {
        font-size: 80px;
    }
    
    .btn-mega {
        font-size: 28px;
        padding: 25px 50px;
        display: block;
        margin: 15px auto;
    }
    
    .cta-info-small {
        font-size: 16px;
    }
    
    /* Footer */
    .footer-brand {
        font-size: 24px;
    }
    
    .footer-small {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .mega-text {
        font-size: 42px;
    }
    
    .pink-text {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .btn-explode {
        font-size: 20px;
        padding: 18px 36px;
    }
    
    .problem-text {
        font-size: 24px;
    }
    
    .problem-text-big {
        font-size: 48px;
    }
    
    .pink-huge {
        font-size: 56px;
    }
    
    .intro-text {
        font-size: 18px;
    }
    
    .intro-text-big {
        font-size: 28px;
    }
    
    .detail-icon {
        font-size: 50px;
    }
    
    .detail-title {
        font-size: 24px;
    }
    
    .detail-description {
        font-size: 15px;
    }
    
    .final-text {
        font-size: 20px;
    }
    
    .final-big {
        font-size: 32px;
    }
    
    .zero-huge {
        font-size: 100px;
    }
    
    .zero-label {
        font-size: 48px;
    }
    
    .final-zero {
        flex-direction: column;
        gap: 10px;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-icon-big {
        font-size: 50px;
    }
    
    .platform-name {
        font-size: 20px;
    }
    
    .more-text {
        font-size: 18px;
    }
    
    .operator-title-big {
        font-size: 36px;
    }
    
    .message-big {
        font-size: 28px;
    }
    
    .message-sub {
        font-size: 15px;
    }
    
    .operator-btn {
        font-size: 18px;
        padding: 16px 32px;
    }
    
    .cta-line-huge {
        font-size: 72px;
    }
}

