﻿/* Premium Modern CSS - Lydratto / RV GLOBAL */
:root {
    --bg-base: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --accent: #10b981;
    --glass-bg: rgba(30, 41, 59, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Montserrat', sans-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-base);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

/* Background Effects */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.03; z-index: -1; pointer-events: none;
}

.gradient-sphere {
    position: fixed; border-radius: 50%; filter: blur(120px); z-index: -2;
    animation: float 20s infinite alternate ease-in-out;
}
.sphere-1 { width: 50vw; height: 50vw; background: rgba(14, 165, 233, 0.15); top: -20%; left: -10%; }
.sphere-2 { width: 40vw; height: 40vw; background: rgba(16, 185, 129, 0.1); bottom: -10%; right: -10%; }

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

/* Typography & Core Elements */
h1, h2, h3, .brand-name { font-family: var(--font-heading); font-weight: 800; }
a { color: var(--text-main); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--primary); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.text-center { text-align: center; }
.highlight { color: var(--primary); }

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.badge-tag {
    display: inline-block; padding: 0.4rem 1.2rem;
    background: rgba(14, 165, 233, 0.1); border: 1px solid rgba(14, 165, 233, 0.3);
    color: var(--primary); border-radius: 50px; font-size: 0.85rem;
    font-weight: 700; margin-bottom: 1.5rem;
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn-primary {
    display: inline-block; background: var(--primary); color: #fff !important;
    padding: 1rem 2.5rem; border-radius: 50px; font-weight: 700;
    border: none; cursor: pointer; transition: 0.3s;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* Header */
.main-header {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    border-radius: 0 0 20px 20px; border-top: none;
}
.header-flex { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.brand { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; }
.desktop-nav { display: flex; gap: 2.5rem; align-items: center; }
.desktop-nav a { font-size: 0.95rem; font-weight: 500; }
.btn-nav { border: 1px solid var(--primary); padding: 0.5rem 1.5rem; border-radius: 50px; }
.btn-nav:hover { background: var(--primary); }

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

/* Hero */
.hero-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 100px; }
.hero-content { max-width: 800px; }
.hero-h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.2; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.hero-desc { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2.5rem; }

/* Features (Asymmetrical) */
.feature-asym { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.feature-image { position: relative; }
.feature-image img { width: 100%; border-radius: 24px; display: block; opacity: 0.9; }
.glass-float-card {
    position: absolute; bottom: -20px; right: -20px;
    background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(10px);
    padding: 1.5rem 2rem; border-radius: 16px; border: 1px solid var(--glass-border);
    display: flex; align-items: center; gap: 15px; font-weight: 700; font-size: 1.1rem;
}
.glass-float-card i { color: var(--accent); font-size: 1.5rem; }
.custom-list { list-style: none; margin-top: 2rem; }
.custom-list li { margin-bottom: 1rem; font-size: 1.1rem; display: flex; gap: 10px; align-items: flex-start; }

/* Process Grid */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.process-card { padding: 3rem; border-radius: 24px; position: relative; overflow: hidden; transition: 0.3s; }
.process-card:hover { transform: translateY(-10px); border-color: rgba(14, 165, 233, 0.3); }
.step-num { font-family: var(--font-heading); font-size: 4rem; font-weight: 800; color: rgba(255,255,255,0.05); position: absolute; top: 10px; right: 20px; line-height: 1; }
.process-card h3 { font-size: 1.4rem; margin-bottom: 1rem; position: relative; z-index: 2; }
.process-card p { color: var(--text-muted); position: relative; z-index: 2; }

/* Lead Form Section */
.form-section { padding: 5rem 0; }
.form-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 4rem; border-radius: 30px; }
.trust-indicators { display: flex; gap: 2rem; margin-top: 2rem; color: var(--accent); font-weight: 700; }
.input-group { margin-bottom: 1.5rem; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-muted); }
input { width: 100%; padding: 1.2rem; background: rgba(0,0,0,0.2); border: 1px solid var(--glass-border); border-radius: 12px; color: white; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; }
input:focus { outline: none; border-color: var(--primary); background: rgba(0,0,0,0.4); }
.consent-group { display: flex; gap: 10px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; align-items: flex-start; }
.consent-group input { width: 20px; height: 20px; margin-top: 3px; }
.consent-group a { color: var(--primary); text-decoration: underline; }
.btn-submit { width: 100%; font-size: 1.1rem; }
.success-msg { padding: 2rem; text-align: center; border-radius: 12px; border-color: var(--accent); color: var(--accent); margin-top: 1rem; }

/* About Section */
.about-content { padding: 4rem; border-radius: 30px; }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.1rem; }

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

/* Footer */
.main-footer { padding: 4rem 0 2rem; margin-top: 4rem; border-radius: 30px 30px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.contact-info { margin-top: 1.5rem; color: var(--text-muted); }
.contact-info i { margin-right: 10px; color: var(--primary); }
.footer-links ul { list-style: none; margin-top: 1rem; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { text-align: center; border-top: 1px solid var(--glass-border); padding-top: 2rem; color: var(--text-muted); 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; border-radius: 20px; z-index: 9999; display: none; flex-direction: column; gap: 1rem; }
@media(min-width: 768px) { .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; } }
.cookie-text p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }

/* Legal Pages Overrides */
.legal-wrapper { padding-top: 150px; padding-bottom: 80px; }
.legal-card { max-width: 900px; margin: 0 auto; padding: 4rem; border-radius: 24px; background: rgba(255, 255, 255, 0.02); }
.legal-card h1 { font-size: 2.2rem; margin-bottom: 2rem; border-bottom: 1px solid var(--glass-border); padding-bottom: 1rem; color: #fff; }
.legal-card h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--primary); }
.legal-card p, .legal-card li { color: var(--text-muted); margin-bottom: 1rem; }
.legal-card ul { margin-left: 1.5rem; margin-bottom: 1.5rem; }

/* Responsive */
@media (max-width: 992px) {
    .feature-asym, .form-wrapper, .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-wrapper { padding: 2rem; }
    .desktop-nav { display: none; } /* Focus on conversion for mobile */
    .hero-h1 { font-size: 2.5rem; }
    .glass-float-card { position: static; margin-top: 1rem; }
    .legal-card { padding: 2rem; }
}
