/* ==========================================================================
   NEXQOA Website Styles - Pop & Unique Edition
   ========================================================================== */

/* CSS Variables */
:root {
    --primary-color: #3366ff;
    --secondary-color: #00d4ff;
    --accent-color: #7df9ff;
    --pink-color: #ff6ec7;
    --yellow-color: #ffd93d;
    --green-color: #6bcf7f;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #e0e6ed;
    --shadow: 0 8px 25px rgba(51, 102, 255, 0.15);
    --shadow-hover: 0 12px 40px rgba(51, 102, 255, 0.25);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-fun: linear-gradient(135deg, #FF9EB5 0%, #FFB6C1 50%, #FFD1DC 100%);
    --transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

/* Cursor Bubble Effect */
.cursor-bubble {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1),
                inset 0 2px 8px rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transform-origin: center;
    transition: none;
    backdrop-filter: blur(2px);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Background - White base */
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -999;
    pointer-events: none;
    background: #ffffff;
}

/* Particle Canvas - Creative visualization */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -998;
    pointer-events: auto;
    cursor: pointer;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #00d4ff, #3366ff, #7df9ff, #00d4ff) 1;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image-header {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(51, 102, 255, 0.3));
    transition: var(--transition);
}

.logo:hover .logo-image-header {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(51, 102, 255, 0.5));
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    filter: drop-shadow(0 2px 8px rgba(51, 102, 255, 0.3));
    transition: var(--transition);
}

.logo:hover .logo-text {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(51, 102, 255, 0.5));
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #3366ff, #7df9ff);
    transition: var(--transition);
    border-radius: 3px;
}

.nav-link:hover {
    color: #00d4ff;
    transform: translateY(-2px);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.contact-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #3366ff 100%);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    font-weight: 700;
}

.nav-link.contact-btn::after {
    display: none;
}

.nav-link.contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 4px;
}

.hamburger:hover span {
    background: var(--gradient-fun);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

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

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.95);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.25) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Removed heroGlow animation */

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

.hero-slogan-box {
    position: relative;
    display: inline-block;
    padding: 0;
    background: none;
    margin-bottom: 50px;
}

.slogan-decoration {
    display: none;
}

.hero-slogan-main {
    font-size: 64px;
    font-weight: 900;
    margin: 0 0 25px 0;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5),
                 0 8px 60px rgba(0, 0, 0, 0.4),
                 0 0 40px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}

.slogan-line {
    display: block;
    animation: textGlowPulse 3s ease-in-out infinite;
}

.slogan-line-1 {
    font-size: 56px;
    font-weight: 700;
}

.slogan-line-2 {
    font-size: 72px;
    letter-spacing: 4px;
    font-weight: 900;
}

@keyframes textGlowPulse {
    0%, 100% { 
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5),
                     0 8px 60px rgba(0, 0, 0, 0.4),
                     0 0 40px rgba(255, 255, 255, 0.3);
    }
    50% { 
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6),
                     0 8px 60px rgba(0, 0, 0, 0.5),
                     0 0 60px rgba(255, 255, 255, 0.5);
    }
}

.hero-slogan-sub {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.6),
                 0 0 30px rgba(255, 255, 255, 0.4);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.5s ease-out;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    animation: bounceUpDown 2s infinite;
    z-index: 2;
}

.scroll-line {
    width: 3px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    border-radius: 3px;
}

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

@keyframes floatBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

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

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 20px 45px;
    font-size: 18px;
}

/* Section */
.section {
    padding: 60px 0;
    position: relative;
}

.section.bg-light {
    background: transparent;
}

/* Section Title - ENHANCED DECORATIVE */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #3366ff, #7df9ff);
    border-radius: 10px;
}

.section-title::before {
    top: -20px;
}

.section-title::after {
    bottom: -20px;
}

/* Decorative Title for Special Sections */
.decorative-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff 0%, #3366ff 50%, #7df9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
    filter: drop-shadow(0 4px 15px rgba(51, 102, 255, 0.3));
    animation: titleGlow 3s ease-in-out infinite;
}

.decorative-title::before {
    content: '✦';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #00d4ff;
    animation: sparkle 2s ease-in-out infinite;
}

.decorative-title::after {
    content: '✦';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #7df9ff;
    animation: sparkle 2s ease-in-out infinite 1s;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 4px 15px rgba(51, 102, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 6px 25px rgba(0, 212, 255, 0.6));
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

/* Mascot Display - NEW */
.mascot-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 30px 0;
    flex-wrap: wrap;
}

.mascot-large {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(51, 102, 255, 0.2));
    transition: all 0.4s ease;
    animation: mascotFloat 4s ease-in-out infinite;
}

.mascot-large:hover {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 20px 60px rgba(0, 212, 255, 0.5));
}

.mascot-medium {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 12px 30px rgba(51, 102, 255, 0.2));
    transition: all 0.4s ease;
    animation: mascotFloat 4s ease-in-out infinite 0.5s;
}

.mascot-medium:hover {
    transform: scale(1.08) rotate(-3deg);
    filter: drop-shadow(0 18px 50px rgba(127, 249, 255, 0.5));
}

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

.title-en {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff 0%, #3366ff 50%, #7df9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    filter: drop-shadow(0 4px 15px rgba(51, 102, 255, 0.3));
    animation: textGlowPulse 3s ease-in-out infinite;
}

@keyframes textGlowPulse {
    0%, 100% {
        filter: drop-shadow(0 4px 15px rgba(51, 102, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 6px 25px rgba(0, 212, 255, 0.5));
    }
}

.title-jp {
    display: block;
    font-size: 20px;
    color: var(--text-light);
    font-weight: 500;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 70px;
}

/* Page Header */
.page-header {
    padding: 120px 0 40px;
    text-align: center;
    position: relative;
}

.page-title .title-en {
    font-size: 64px;
}

/* Character Dialogue - ENHANCED */
.character-dialogue {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.character-left,
.character-right {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: flex-end;
    min-width: 350px;
    position: relative;
}

.character-right {
    flex-direction: row-reverse;
}

.character-img {
    width: 250px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
    transition: var(--transition);
    animation: characterBounce 3s ease-in-out infinite;
}

.character-img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 15px 40px rgba(255, 110, 199, 0.4));
}

.character-left .character-img {
    animation-delay: 0s;
}

.character-right .character-img {
    animation-delay: 0.5s;
}

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

.character-img-small {
    width: 180px;
}

.speech-bubble {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(51, 102, 255, 0.2);
    position: relative;
    flex: 1;
    border: 3px solid rgba(51, 102, 255, 0.1);
    transition: var(--transition);
}

.speech-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(51, 102, 255, 0.3);
    border-color: var(--primary-color);
}

.speech-bubble p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

.speech-bubble p:last-child {
    margin-bottom: 0;
}

.speech-bubble strong {
    color: var(--primary-color);
    font-weight: 700;
}

.bubble-right::before {
    content: '';
    position: absolute;
    left: -20px;
    bottom: 40px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 25px 15px 0;
    border-color: transparent #ffffff transparent transparent;
    filter: drop-shadow(-2px 0 3px rgba(51, 102, 255, 0.1));
}

.bubble-left::before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: 40px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #ffffff;
    filter: drop-shadow(2px 0 3px rgba(51, 102, 255, 0.1));
}

/* Mini Character Dialogue */
.character-mini-dialogue {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.mini-character {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
    animation: miniFloat 3s ease-in-out infinite;
}

.mini-character:hover {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 10px 25px rgba(107, 207, 127, 0.4));
}

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

.mini-character-small {
    width: 90px;
}

.mini-bubble {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(107, 207, 127, 0.2);
    max-width: 450px;
    border: 3px solid rgba(107, 207, 127, 0.2);
    transition: var(--transition);
}

.mini-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(107, 207, 127, 0.3);
}

.mini-bubble p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

/* ========================================
   VTuber Ambassador Section
======================================== */
.ambassador {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.1), rgba(0, 212, 255, 0.1));
}

.ambassador-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.ambassador-text {
    flex: 1;
    min-width: 320px;
}

.ambassador-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.ambassador-title i {
    color: var(--pink-color);
    font-size: 28px;
}

.ambassador-description {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 30px;
}

.ambassador-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

.ambassador-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.ambassador-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.ambassador-features i {
    color: var(--secondary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.ambassador-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-ambassador,
.btn-ambassador-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: 3px solid transparent;
}

.btn-ambassador {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.btn-ambassador:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.4);
}

.btn-ambassador-secondary {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(51, 102, 255, 0.2);
}

.btn-ambassador-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(51, 102, 255, 0.4);
}

.ambassador-visual {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ambassador-placeholder {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 3px dashed rgba(51, 102, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.ambassador-placeholder:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.85);
}

.ambassador-placeholder i {
    font-size: 64px;
    color: rgba(51, 102, 255, 0.3);
}

.ambassador-placeholder p {
    font-size: 18px;
    color: var(--text-light);
    margin: 0;
}

.ambassador-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 15px 60px rgba(255, 110, 199, 0.3);
    transition: var(--transition);
    border: 3px solid rgba(255, 110, 199, 0.2);
}

.ambassador-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 80px rgba(255, 110, 199, 0.4);
    border-color: rgba(255, 110, 199, 0.4);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-fun);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

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

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

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 45px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(51, 102, 255, 0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 15px 40px rgba(51, 102, 255, 0.5);
}

.service-card-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.service-card-desc {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.7;
}

.service-card-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.service-card-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.service-card-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    font-size: 18px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 15px;
    color: var(--pink-color);
}

/* Why Choose Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 900px;
    margin: 0 auto;
}

.why-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 3px solid rgba(255, 110, 199, 0.1);
}

.why-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-hover);
    border-color: var(--pink-color);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-fun);
    border-radius: 50%;
    font-size: 35px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 110, 199, 0.3);
    transition: var(--transition);
}

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

.why-card h3 {
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.why-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #3366ff 0%, #00d4ff 50%, #7df9ff 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 20s ease-in-out infinite;
}

.cta-decoration-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -50px;
    animation-delay: 0s;
}

.cta-decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 10%;
    animation-delay: 5s;
}

.cta-decoration-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -30px;
    animation-delay: 10s;
}

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

.cta-section::before {
    display: none;
}

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

.cta-icon-wrapper {
    margin-bottom: 30px;
}

.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    font-size: 45px;
    color: var(--white);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-text {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.cta-feature i {
    font-size: 20px;
}

.btn-cta-special {
    background: var(--white);
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    padding: 20px 50px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.btn-cta-special:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

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

.cta-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 3px solid rgba(51, 102, 255, 0.2);
}

.cta-box .cta-title {
    color: var(--text-dark);
    font-size: 32px;
    margin-bottom: 18px;
}

.cta-box .cta-text {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 30px;
}

/* Studio Visual */
.studio-visual-wrapper {
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.studio-visual-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    border: 3px solid rgba(0, 212, 255, 0.2);
}

.studio-visual-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

/* Content Box */
.content-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 3px solid rgba(51, 102, 255, 0.1);
}

.content-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
    text-align: center;
}

.content-text {
    font-size: 17px;
    line-height: 2;
    color: var(--text-dark);
}

/* Continue with rest of styles... (truncated for length) */
/* All remaining styles from the original CSS with enhanced hover effects, animations, and pop aesthetics */

/* Manga Panel */
.manga-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 3px solid rgba(255, 110, 199, 0.1);
}

.manga-row {
    margin-bottom: 40px;
}

.manga-row:last-child {
    margin-bottom: 0;
}

.manga-cell {
    display: flex;
    align-items: center;
    gap: 25px;
}

.manga-cell.center {
    justify-content: center;
}

.manga-character {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
    transition: var(--transition);
}

.manga-character:hover {
    transform: scale(1.15) rotate(-3deg);
}

.manga-character-small {
    width: 100px;
}

.name-explanation {
    background: linear-gradient(135deg, #f0f8ff 0%, #fff5f8 100%);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 10px 40px rgba(51, 102, 255, 0.15);
    border: 3px solid rgba(51, 102, 255, 0.1);
}

.name-explanation h3 {
    font-size: 28px;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.name-parts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.name-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.name-part:hover {
    transform: scale(1.1);
}

.part-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.part-arrow {
    font-size: 24px;
    color: var(--text-light);
}

.part-meaning {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.name-plus {
    font-size: 36px;
    color: var(--pink-color);
    font-weight: bold;
}

.name-result {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 3px solid rgba(255, 110, 199, 0.1);
}

.mission-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-hover);
    border-color: var(--pink-color);
}

.mission-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-fun);
    border-radius: 50%;
    font-size: 40px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 110, 199, 0.3);
    transition: var(--transition);
}

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

.mission-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.mission-card h4 {
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.mission-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
}

/* Philosophy Box */
.philosophy-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 3px solid rgba(255, 110, 199, 0.1);
}

.philosophy-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.philosophy-visual-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.philosophy-visual {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(255, 182, 193, 0.3);
    transition: var(--transition);
    border: 3px solid rgba(255, 182, 193, 0.2);
}

.philosophy-visual:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 182, 193, 0.4);
    border-color: rgba(255, 182, 193, 0.4);
}

.philosophy-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text p {
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 2;
    color: var(--text-dark);
}

.philosophy-text p:last-child {
    margin-bottom: 0;
}

.philosophy-main {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ========================================
   Comparison Section
======================================== */
.comparison-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.comparison-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
}

.comparison-strengths {
    margin-bottom: 60px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.strength-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 3px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.25);
    border-color: var(--secondary-color);
}

.strength-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.strength-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.strength-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.quality-assurance {
    margin-bottom: 60px;
}

.quality-content {
    margin-top: 30px;
}

.quality-text {
    margin-bottom: 35px;
}

.quality-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.quality-highlight i {
    font-size: 28px;
    color: var(--secondary-color);
}

.quality-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.quality-managers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.manager-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(51, 102, 255, 0.1));
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(51, 102, 255, 0.2);
    transition: var(--transition);
}

.manager-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(51, 102, 255, 0.2);
}

.manager-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.manager-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.manager-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.era-evolution {
    margin-top: 60px;
}

.evolution-intro {
    text-align: center;
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    margin: 30px 0 40px;
}

.evolution-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.evolution-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 25px;
    border-radius: 20px;
    border: 3px solid rgba(255, 110, 199, 0.2);
    transition: var(--transition);
}

.evolution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 110, 199, 0.2);
    border-color: var(--pink-color);
}

.evolution-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pink-color), #ff9eb5);
    border-radius: 50%;
    font-size: 28px;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 110, 199, 0.3);
}

.evolution-item h5 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.evolution-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 15px;
}

.evolution-flow i {
    color: var(--primary-color);
    font-size: 16px;
}

.old-method,
.new-method,
.ai-method {
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.old-method {
    background: rgba(150, 150, 150, 0.15);
    color: #666;
}

.new-method {
    background: rgba(51, 102, 255, 0.15);
    color: var(--primary-color);
}

.ai-method {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(51, 102, 255, 0.2));
    color: var(--secondary-color);
    font-weight: 700;
}

.evolution-conclusion {
    text-align: center;
    font-size: 18px;
    line-height: 2;
    color: var(--text-dark);
    padding: 35px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(51, 102, 255, 0.08));
    border-radius: 20px;
    border: 3px solid rgba(0, 212, 255, 0.2);
}

.evolution-conclusion i {
    color: var(--yellow-color);
    font-size: 24px;
    margin-right: 8px;
}

.evolution-conclusion strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Service Tabs */
.service-tabs-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 3px solid rgba(51, 102, 255, 0.1);
}

.tabs-header {
    display: flex;
    background: rgba(240, 248, 255, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid rgba(51, 102, 255, 0.1);
}

.tab-button {
    flex: 1;
    padding: 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.tab-button:hover {
    background: rgba(51, 102, 255, 0.08);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.tab-button.active {
    background: var(--white);
    color: var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
    transform: scale(1.05);
}

.tab-button i {
    font-size: 22px;
}

.tab-content {
    display: none;
    padding: 60px;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.service-intro {
    margin-bottom: 50px;
}

.service-section-title {
    font-size: 36px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #3366ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    filter: drop-shadow(0 3px 12px rgba(51, 102, 255, 0.3));
    position: relative;
    display: inline-block;
}

.service-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #3366ff, #7df9ff);
    border-radius: 10px;
}

.service-section-desc {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-visual-wrapper {
    text-align: center;
    margin-top: 40px;
}

.service-visual-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    border: 3px solid rgba(0, 212, 255, 0.2);
}

.service-visual-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

/* Price Table */
.price-section {
    margin-top: 50px;
}

.price-category-title {
    font-size: 30px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #3366ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 50px 0 25px;
    padding-bottom: 15px;
    padding-left: 22px;
    position: relative;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #00d4ff, #3366ff, #7df9ff) 1;
}

.price-category-title::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #00d4ff;
    font-size: 18px;
}

.price-category-title:first-child {
    margin-top: 0;
}

.price-table {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.price-table thead {
    background: rgba(240, 248, 255, 0.5);
    backdrop-filter: blur(10px);
}

.price-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 3px solid rgba(51, 102, 255, 0.2);
    font-size: 16px;
}

.price-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 15px;
}

.price-table tr {
    transition: var(--transition);
}

.price-table tr:hover {
    background: linear-gradient(135deg, #f0f8ff 0%, #fff5f8 100%);
    transform: scale(1.02);
}

.price-table .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.price-table .note {
    font-size: 13px;
    color: var(--text-light);
}

.highlight-row {
    background: transparent;
}

.highlight-row:hover {
    background: rgba(0, 0, 0, 0.02);
}

/* Works Visual */
.works-visual-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.works-visual-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 15px 60px rgba(255, 182, 193, 0.3);
    transition: var(--transition);
    border: 3px solid rgba(255, 182, 193, 0.2);
}

.works-visual-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 80px rgba(255, 182, 193, 0.4);
    border-color: rgba(255, 182, 193, 0.4);
}

/* News Visual */
.news-visual-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.news-visual-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 15px 60px rgba(0, 212, 255, 0.3);
    transition: var(--transition);
    border: 3px solid rgba(0, 212, 255, 0.2);
}

.news-visual-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 80px rgba(0, 212, 255, 0.4);
    border-color: rgba(0, 212, 255, 0.4);
}

/* FAQ Visual */
.faq-visual-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.faq-visual-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 15px 60px rgba(255, 182, 193, 0.3);
    transition: var(--transition);
    border: 3px solid rgba(255, 182, 193, 0.2);
}

.faq-visual-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 80px rgba(255, 182, 193, 0.4);
    border-color: rgba(255, 182, 193, 0.4);
}

/* Contact Visual */
.contact-visual-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.contact-visual-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 15px 60px rgba(255, 182, 193, 0.3);
    transition: var(--transition);
    border: 3px solid rgba(255, 182, 193, 0.2);
}

.contact-visual-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 80px rgba(255, 182, 193, 0.4);
    border-color: rgba(255, 182, 193, 0.4);
}

/* Works Filter */
.works-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 15px 30px;
    background: var(--white);
    border: 3px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 16px;
}

.filter-btn:hover {
    background: rgba(51, 102, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: scale(1.1);
}

/* Coming Soon Box */
.coming-soon-box {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    padding: 100px 60px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 3px solid rgba(51, 102, 255, 0.1);
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-fun);
    border-radius: 50%;
    font-size: 60px;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(255, 110, 199, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.coming-soon-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.coming-soon-text {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* News List */
.news-list {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    padding: 35px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 35px;
    display: flex;
    gap: 35px;
    transition: var(--transition);
    border: 3px solid rgba(51, 102, 255, 0.1);
}

.news-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.news-date {
    flex-shrink: 0;
    text-align: center;
    padding: 20px;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: var(--white);
    min-width: 100px;
    box-shadow: 0 8px 25px rgba(51, 102, 255, 0.3);
}

.date-day {
    display: block;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.95;
    font-weight: 600;
}

.news-content {
    flex: 1;
}

.news-category {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.category-info {
    background: rgba(51, 102, 255, 0.15);
    color: var(--primary-color);
}

.category-service {
    background: rgba(107, 207, 127, 0.15);
    color: var(--green-color);
}

.news-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.news-excerpt {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 18px;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.news-link:hover {
    gap: 15px;
    color: var(--pink-color);
}

.character-comment {
    margin-top: 60px;
    text-align: center;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #3366ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    padding-left: 25px;
}

.faq-category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: linear-gradient(180deg, #00d4ff, #3366ff);
    border-radius: 10px;
}

.faq-category-title i {
    color: #3366ff;
    font-size: 36px;
    filter: drop-shadow(0 2px 8px rgba(51, 102, 255, 0.3));
}

.faq-item {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    overflow: hidden;
    border: 3px solid rgba(51, 102, 255, 0.1);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(51, 102, 255, 0.05);
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 600px;
}

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

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    height: fit-content;
    border: 3px solid rgba(51, 102, 255, 0.1);
}

.contact-info-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.contact-info-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-detail-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(51, 102, 255, 0.3);
}

.contact-detail-item strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-detail-item p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 3px solid rgba(51, 102, 255, 0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 15px;
}

.required {
    color: #e74c3c;
    font-weight: 900;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 3px solid var(--border-color);
    border-radius: 15px;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(51, 102, 255, 0.1);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-privacy {
    margin-bottom: 35px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
}

.privacy-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 12px;
    line-height: 1.7;
}

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

.btn-submit {
    min-width: 250px;
}

.form-message {
    margin-top: 25px;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    display: none;
    font-weight: 600;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 3px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 3px solid #f5c6cb;
}

/* Contact SNS */
.contact-sns {
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 3px solid rgba(51, 102, 255, 0.1);
}

.contact-sns-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-sns-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 35px;
    background: linear-gradient(135deg, #f0f8ff 0%, #fff5f8 100%);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    min-width: 130px;
    border: 3px solid rgba(51, 102, 255, 0.1);
}

.social-link-large:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #3366ff 100%);
    color: var(--white);
    transform: translateY(-10px) scale(1.1) rotate(3deg);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4);
    border-color: #00d4ff;
}

.social-link-large i {
    font-size: 38px;
}

.social-link-large span {
    font-size: 15px;
    font-weight: 700;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00d4ff, #3366ff, #7df9ff, #00d4ff);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #3366ff 50%, #7df9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(0, 212, 255, 0.5));
}

.footer-slogan {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 18px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 22px;
    border: 2px solid transparent;
}

.social-link:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #3366ff 100%);
    transform: translateY(-5px) rotate(15deg) scale(1.15);
    border-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: #00d4ff;
    padding-left: 8px;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.9s ease-out forwards;
}

.fade-in-up[data-delay="0"] { animation-delay: 0s; }
.fade-in-up[data-delay="100"] { animation-delay: 0.15s; }
.fade-in-up[data-delay="200"] { animation-delay: 0.3s; }
.fade-in-up[data-delay="300"] { animation-delay: 0.45s; }

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .philosophy-content {
        flex-direction: column;
    }
    
    .philosophy-visual {
        max-width: 100%;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .logo-image-header {
        height: 30px;
    }
    
    .nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        transition: var(--transition);
        padding: 50px 30px;
        border-top: 3px solid transparent;
        border-image: linear-gradient(90deg, #00d4ff, #3366ff, #7df9ff, #00d4ff) 1;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
    
    .nav-link.contact-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .title-en {
        font-size: 42px;
    }
    
    .hero-slogan-jp {
        font-size: 22px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .character-dialogue {
        flex-direction: column;
        gap: 35px;
    }
    
    .ambassador-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .ambassador-title {
        font-size: 26px;
    }
    
    .ambassador-description {
        font-size: 16px;
    }
    
    .ambassador-links {
        flex-direction: column;
    }
    
    .btn-ambassador,
    .btn-ambassador-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .ambassador-placeholder {
        height: 280px;
    }
    
    .character-left,
    .character-right {
        flex-direction: row;
        min-width: 100%;
    }
    
    .character-img {
        width: 180px;
    }
    
    .character-img-small {
        width: 120px;
    }
    
    .mascot-display {
        gap: 30px;
        padding: 40px 0;
    }
    
    .mascot-large {
        width: 250px;
    }
    
    .mascot-medium {
        width: 180px;
    }
    
    .decorative-title {
        font-size: 36px;
    }
    
    .decorative-title::before,
    .decorative-title::after {
        display: none;
    }
    
    .services-grid,
    .why-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-subtitle {
        font-size: 24px;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-managers {
        grid-template-columns: 1fr;
    }
    
    .evolution-timeline {
        grid-template-columns: 1fr;
    }
    
    .evolution-flow {
        font-size: 14px;
        gap: 8px;
    }
    
    .old-method,
    .new-method,
    .ai-method {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .evolution-conclusion {
        font-size: 16px;
        padding: 25px 20px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-text {
        font-size: 18px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-feature {
        width: 100%;
        justify-content: center;
    }
    
    .hero-slogan-box {
        padding: 0;
    }
    
    .hero-slogan-main {
        font-size: 40px;
    }
    
    .slogan-line-1 {
        font-size: 36px;
    }
    
    .slogan-line-2 {
        font-size: 48px;
    }
    
    .hero-slogan-sub {
        font-size: 14px;
    }
    
    .btn-cta-special {
        width: 100%;
        padding: 18px 30px;
        font-size: 18px;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-content {
        padding: 40px 30px;
    }
    
    .studio-visual-wrapper {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .studio-visual-image {
        border-radius: 20px;
    }
    
    .works-visual-wrapper {
        margin-bottom: 40px;
    }
    
    .works-visual-image {
        border-radius: 20px;
    }
    
    .news-visual-wrapper {
        margin-bottom: 40px;
    }
    
    .news-visual-image {
        border-radius: 20px;
    }
    
    .faq-visual-wrapper {
        margin-bottom: 40px;
    }
    
    .faq-visual-image {
        border-radius: 20px;
    }
    
    .contact-visual-wrapper {
        margin-bottom: 40px;
    }
    
    .contact-visual-image {
        border-radius: 20px;
    }
    
    .service-visual-wrapper {
        margin-top: 30px;
    }
    
    .service-visual-image {
        border-radius: 20px;
    }
    
    .news-item {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-box,
    .manga-panel,
    .philosophy-box,
    .coming-soon-box,
    .cta-box,
    .contact-form-wrapper {
        padding: 40px 30px;
    }
    
    .logo-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 42px;
    }
    
    .logo-image-header {
        height: 28px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .title-en {
        font-size: 36px;
    }
    
    .hero-slogan-jp {
        font-size: 20px;
    }
    
    .character-img {
        width: 140px;
    }
    
    .character-img-small {
        width: 90px;
    }
    
    .mascot-display {
        gap: 20px;
        padding: 30px 0;
    }
    
    .mascot-large {
        width: 200px;
    }
    
    .mascot-medium {
        width: 140px;
    }
    
    .decorative-title {
        font-size: 28px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    .logo-image {
        max-width: 250px;
    }
    
    .speech-bubble {
        padding: 20px;
    }
}