﻿/* Premium Tech / Cyber-Corporate CSS */
:root {
    --bg-base: #060a14;
    --panel-bg: rgba(15, 23, 42, 0.5);
    --accent-blue: #00F0FF;
    --accent-deep: #003BFF;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-glow: rgba(0, 240, 255, 0.15);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', 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.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Unique Element: Animated Energy Flow Grid */
.energy-flow-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; background: var(--bg-base); }
.grid-overlay { position: absolute; top:0; left:0; width: 200vw; height: 200vh; background-image: linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px); background-size: 50px 50px; transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px); animation: moveGrid 20s linear infinite; }
@keyframes moveGrid { 100% { transform: perspective(500px) rotateX(60deg) translateY(0px) translateZ(-200px); } }
.glow-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4; }
.orb-1 { width: 40vw; height: 40vw; background: var(--accent-blue); top: -10%; left: -10%; animation: pulse 10s alternate infinite; }
.orb-2 { width: 50vw; height: 50vw; background: var(--accent-deep); bottom: -20%; right: -10%; animation: pulse 12s alternate-reverse infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.3; } 100% { transform: scale(1.2); opacity: 0.5; } }

/* Typography */
h1, h2, h3, .brand-name { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.5px; }
a { color: var(--text-main); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--accent-blue); }
.text-center { text-align: center; }
.text-gradient { background: linear-gradient(90deg, var(--accent-blue), #8a2be2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Structural Components */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.glass-panel { background: var(--panel-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border-glow); border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }

/* Buttons & Badges */
.badge { display: inline-block; padding: 0.4rem 1.2rem; background: rgba(0, 240, 255, 0.1); border: 1px solid var(--accent-blue); color: var(--accent-blue); border-radius: 50px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2rem; }
.btn-primary { display: inline-block; background: linear-gradient(135deg, var(--accent-blue), var(--accent-deep)); color: #fff !important; padding: 1.2rem 2.5rem; border-radius: 10px; font-weight: 600; font-family: var(--font-body); border: none; cursor: pointer; transition: 0.4s; box-shadow: 0 5px 20px rgba(0, 240, 255, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0, 240, 255, 0.5); }
.btn-outline { padding: 0.7rem 1.8rem; border: 1px solid var(--accent-blue); color: var(--text-main); border-radius: 10px; font-weight: 600; transition: 0.3s; }
.btn-outline:hover { background: var(--accent-blue); color: #000; }
.btn-block { width: 100%; font-size: 1.1rem; }

/* Header */
.glass-header { position: fixed; width: 100%; top: 0; z-index: 1000; border-radius: 0; border-top: none; border-left: none; border-right: none; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 1.8rem; font-weight: 900; }
.dot { color: var(--accent-blue); }
.desktop-nav { display: flex; gap: 2.5rem; align-items: center; }
.desktop-nav a { font-size: 0.95rem; font-weight: 500; }

/* Sections Global */
section { padding: 9rem 0; }
.section-title { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; line-height: 1.1; }
.section-subtitle { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 3.5rem; }

/* Hero Section */
.hero { display: flex; align-items: center; min-height: 100vh; padding-top: 120px; }
.hero-content { padding: 5rem; max-width: 850px; }
.hero-title { font-size: clamp(2.8rem, 7vw, 5rem); line-height: 1.05; margin-bottom: 1.5rem; font-weight: 900; }
.hero-desc { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 3rem; line-height: 1.8; }

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

/* Features */
.feature-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.image-box { position: relative; padding: 1rem; }
.image-box img { width: 100%; border-radius: 12px; display: block; filter: contrast(1.1); }
.floating-badge { position: absolute; bottom: -20px; right: -20px; background: #000; border: 1px solid var(--accent-blue); padding: 1.2rem 2rem; border-radius: 12px; display: flex; align-items: center; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.floating-badge i { font-size: 2rem; color: var(--accent-blue); }
.val { display: block; font-size: 2rem; font-weight: 900; font-family: var(--font-heading); line-height: 1; }
.lbl { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; }
.benefit-list { list-style: none; margin-top: 2rem; }
.benefit-list li { display: flex; gap: 20px; margin-bottom: 2.5rem; }
.icon-wrap { background: rgba(0, 240, 255, 0.1); border: 1px solid var(--border-glow); width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-wrap i { font-size: 1.5rem; color: var(--accent-blue); }
.benefit-list h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.benefit-list p { color: var(--text-muted); }

/* Form Section */
.form-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; padding: 4rem; }
.trust-marks { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; color: var(--accent-blue); font-size: 0.95rem; font-weight: 600; }
.input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.input-group { margin-bottom: 1.5rem; }
label { display: block; margin-bottom: 0.5rem; font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
input { width: 100%; padding: 1.2rem; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: white; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; }
input:focus { outline: none; border-color: var(--accent-blue); background: rgba(0,0,0,0.7); }
.checkbox-group { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 2rem; font-size: 0.85rem; color: var(--text-muted); }
.checkbox-group input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--accent-blue); }
.checkbox-group a { color: var(--accent-blue); text-decoration: underline; }
.success-box { text-align: center; padding: 2rem; border: 1px solid var(--accent-blue); border-radius: 8px; background: rgba(0, 240, 255, 0.1); color: var(--accent-blue); margin-top: 1rem; }

/* About Section */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
.about-text { padding: 4rem; }
.about-text p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.05rem; }
.rounded-img { width: 100%; border-radius: 20px; border: 1px solid var(--border-glow); opacity: 0.85; }

/* FAQ */
.accordion-wrapper { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { padding: 1.5rem 2rem; cursor: pointer; }
.faq-item summary { font-weight: 600; 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(--accent-blue); transition: 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); }

/* Footer */
.main-footer { border-radius: 0; border-bottom: none; border-left: none; border-right: none; padding: 5rem 0 2rem; margin-top: 5rem; background: rgba(6, 10, 20, 0.9); }
.footer-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.address { margin: 1.5rem 0; color: var(--text-muted); line-height: 1.8; }
.contact p { margin-bottom: 0.5rem; color: var(--text-muted); }
.contact i { color: var(--accent-blue); margin-right: 10px; width: 20px; text-align: center; }
.legal-links h3 { margin-bottom: 1.5rem; font-size: 1.2rem; }
.legal-links nav { display: flex; flex-direction: column; gap: 1rem; }
.legal-links a { color: var(--text-muted); }
.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; color: #475569; font-size: 0.85rem; }

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

/* Legal Pages (White Paper style for trust) */
.legal-page { padding-top: 140px; padding-bottom: 80px; }
.legal-box { max-width: 900px; margin: 0 auto; padding: 5rem; background: #ffffff; color: #0f172a; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.legal-box h1 { font-size: 2.2rem; border-bottom: 2px solid #e2e8f0; padding-bottom: 1rem; margin-bottom: 2rem; color: #0f172a; }
.legal-box h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 1rem; color: #003BFF; font-family: var(--font-body); }
.legal-box p, .legal-box li { color: #334155; margin-bottom: 1rem; line-height: 1.8; }
.legal-box ul { margin-left: 2rem; margin-bottom: 1.5rem; }
.legal-box a { color: #003BFF; font-weight: 600; }

/* Responsive */
@media (max-width: 992px) {
    .feature-layout, .form-container, .about-grid, .footer-layout { grid-template-columns: 1fr; gap: 3rem; }
    .input-grid { grid-template-columns: 1fr; }
    .desktop-nav { display: none; }
    .hero-content, .form-container { padding: 2.5rem; }
    .floating-badge { position: relative; bottom: auto; right: auto; margin-top: -20px; display: inline-flex; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .legal-box { padding: 2.5rem; }
}
