﻿/* Modern Bio-Tech Premium CSS */
:root {
    --bg-dark: #0f172a;
    --primary-cyan: #06b6d4;
    --primary-blue: #0ea5e9;
    --accent-gold: #d97706;
    --text-light: #f8fafc;
    --text-muted: #cbd5e1;
    --glass-bg: rgba(30, 41, 59, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Noto Sans JP', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Background Animations (Glassmorphism + Spheres) */
.bio-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(150px); animation: float 25s infinite alternate ease-in-out; }
.orb-1 { width: 50vw; height: 50vw; background: rgba(6, 182, 212, 0.15); top: -10%; left: -10%; }
.orb-2 { width: 40vw; height: 40vw; background: rgba(14, 165, 233, 0.15); bottom: 10%; right: -10%; animation-delay: -5s; }
.orb-3 { width: 30vw; height: 30vw; background: rgba(217, 119, 6, 0.08); top: 40%; left: 40%; animation-delay: -10s; }
.dna-grid {
    position: absolute; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px; opacity: 0.5;
}

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

/* Typography */
h1, h2, h3, .brand-text { font-family: var(--font-heading); }
a { color: var(--text-light); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--primary-cyan); }
.text-center { text-align: center; }

/* Components */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.badge { display: inline-block; padding: 0.4rem 1.2rem; background: rgba(6, 182, 212, 0.1); border: 1px solid var(--primary-cyan); color: var(--primary-cyan); border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: 1px; }

/* Buttons */
.btn-primary { display: inline-block; background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue)); color: white !important; padding: 1.2rem 2.5rem; border-radius: 50px; font-weight: 700; font-family: var(--font-body); border: none; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(6, 182, 212, 0.6); }
.btn-outline { display: inline-block; padding: 0.8rem 1.5rem; border: 1px solid var(--primary-cyan); color: var(--text-light); border-radius: 50px; font-weight: 700; transition: 0.3s; }
.btn-outline:hover { background: var(--primary-cyan); color: #fff; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.9rem; }
.btn-block { width: 100%; font-size: 1.1rem; }

/* Header */
.glass-nav { position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 85px; }
.brand-logo { display: flex; align-items: center; gap: 10px; font-size: 2rem; font-weight: 700; }
.dot { color: var(--accent-gold); }
nav { display: flex; gap: 2.5rem; align-items: center; }
nav a { font-weight: 500; font-size: 0.95rem; }

/* Sections */
section { padding: 7rem 0; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; line-height: 1.2; }

/* Hero */
.hero { display: flex; align-items: center; min-height: 100vh; padding-top: 100px; }
.hero-content { padding: 4rem; max-width: 800px; }
.huge-title { font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 1.5rem; }
.huge-title span { background: linear-gradient(90deg, var(--primary-cyan), var(--accent-gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-desc { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.8; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text { padding: 3rem; }
.about-text p { margin-bottom: 1.5rem; color: var(--text-muted); }
.rounded-img { width: 100%; border-radius: 24px; display: block; border: 1px solid var(--glass-border); opacity: 0.9; }
.stats-row { display: flex; gap: 2rem; margin-top: 2rem; border-top: 1px solid var(--glass-border); padding-top: 2rem; }
.stat-num { display: block; font-size: 2.5rem; font-family: var(--font-heading); color: var(--primary-cyan); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* Features */
.feature-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.glass-image-wrapper { position: relative; padding: 1rem; border-radius: 30px; background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); }
.glass-image-wrapper img { width: 100%; border-radius: 20px; display: block; filter: contrast(1.1); }
.floating-alert { position: absolute; bottom: 30px; right: -20px; background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(10px); padding: 1rem 1.5rem; border-radius: 12px; border: 1px solid var(--primary-cyan); display: flex; align-items: center; gap: 10px; font-weight: 700; color: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.floating-alert i { color: var(--primary-cyan); }
.benefit-list { list-style: none; margin-top: 2.5rem; }
.benefit-list li { display: flex; gap: 20px; margin-bottom: 2rem; }
.benefit-list i { font-size: 1.8rem; margin-top: 5px; }
.icon-cyan { color: var(--primary-cyan); }
.icon-gold { color: var(--accent-gold); }
.benefit-list strong { display: block; font-size: 1.2rem; margin-bottom: 0.3rem; }
.benefit-list span { color: var(--text-muted); font-size: 0.95rem; }

/* Process */
.subtitle { color: var(--text-muted); margin-bottom: 3rem; font-size: 1.1rem; }
.process-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.process-card { padding: 3rem; text-align: left; position: relative; overflow: hidden; transition: 0.3s; }
.process-card:hover { border-color: var(--primary-cyan); transform: translateY(-5px); }
.step-num { font-family: var(--font-heading); font-size: 4rem; color: rgba(255,255,255,0.05); position: absolute; top: 10px; right: 20px; line-height: 1; }
.process-card h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--primary-cyan); }
.process-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Lead Form */
.form-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 4rem; }
.trust-badges { display: flex; gap: 1.5rem; margin-top: 2rem; color: var(--accent-gold); font-size: 0.9rem; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.5rem; }
label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-muted); }
input { width: 100%; padding: 1rem; background: rgba(0,0,0,0.3); border: 1px solid var(--glass-border); border-radius: 12px; color: white; font-family: var(--font-body); transition: 0.3s; }
input:focus { outline: none; border-color: var(--primary-cyan); background: rgba(0,0,0,0.5); }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--text-muted); }
.checkbox-group input { width: 18px; height: 18px; margin-top: 3px; }
.checkbox-group a { color: var(--primary-cyan); text-decoration: underline; }
.success-box { text-align: center; padding: 2rem; border: 1px solid var(--primary-cyan); border-radius: 12px; background: rgba(6, 182, 212, 0.1); color: var(--primary-cyan); margin-top: 1rem; }

/* FAQ */
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { padding: 1.5rem; cursor: pointer; }
.faq-item summary { font-weight: 700; font-size: 1.1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '\f067'; font-family: 'FontAwesome'; color: var(--primary-cyan); transition: 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer, .faq-content { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--glass-border); color: var(--text-muted); }

/* Footer */
.footer { border-top: 1px solid var(--glass-border); padding: 5rem 0 2rem; background: rgba(0,0,0,0.5); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.company-address { margin: 1.5rem 0; color: var(--text-muted); line-height: 1.8; }
.contact-methods span { display: block; margin-bottom: 0.5rem; color: var(--text-muted); }
.contact-methods i { color: var(--primary-cyan); margin-right: 10px; }
.footer-legal nav { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.footer-legal a { color: var(--text-muted); }
.footer-legal a:hover { color: var(--primary-cyan); }
.footer-bottom { text-align: center; border-top: 1px solid var(--glass-border); padding-top: 2rem; color: #64748b; font-size: 0.9rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 700px; padding: 1.5rem 2rem; z-index: 9999; display: none; align-items: center; justify-content: space-between; gap: 2rem; }
.cookie-text { font-size: 0.85rem; color: var(--text-muted); }

/* Legal Pages (White Card style over dark bg) */
.legal-main { padding-top: 130px; padding-bottom: 80px; }
.legal-card { max-width: 900px; margin: 0 auto; padding: 4rem; background: #ffffff; color: #0f172a; border-radius: 24px; }
.legal-card h1 { font-size: 2.2rem; border-bottom: 2px solid #e2e8f0; padding-bottom: 1rem; margin-bottom: 2rem; }
.legal-card h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--primary-blue); }
.legal-card p, .legal-card li { color: #334155; margin-bottom: 1rem; line-height: 1.7; }
.legal-card ul { margin-left: 2rem; margin-bottom: 1.5rem; }
.legal-card a { color: var(--primary-blue); }

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .feature-flex, .form-container, .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    nav { display: none; } /* Hide nav on mobile for lead gen focus */
    .hero-content { padding: 2rem; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .floating-alert { position: relative; bottom: auto; right: auto; margin-top: -20px; display: inline-flex; }
    .legal-card { padding: 2rem; }
}
