﻿/* Global Styles & Variables */
:root {
    --bg-dark: #09090b; /* Zinc 950 */
    --bg-glass: rgba(24, 24, 27, 0.7);
    --border-glass: rgba(0, 240, 255, 0.15);
    --cyan-neon: #00F0FF;
    --purple-neon: #7000FF;
    --text-primary: #f4f4f5;
    --text-muted: #a1a1aa;
    --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-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Unique Graphic Element: Isometric Grid & Orbs */
.cyber-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; background: var(--bg-dark); overflow: hidden; }
.isometric-grid { position: absolute; width: 200%; height: 200%; top: -50%; left: -50%; background-image: linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px); background-size: 50px 50px; transform: rotateX(60deg) rotateZ(45deg); transform-origin: center center; animation: gridMove 20s linear infinite; }
.neon-orb { position: absolute; border-radius: 50%; filter: blur(140px); opacity: 0.35; mix-blend-mode: screen; }
.neon-orb.cyan { width: 45vw; height: 45vw; background: var(--cyan-neon); top: -10%; left: -10%; animation: float 10s ease-in-out infinite alternate; }
.neon-orb.purple { width: 40vw; height: 40vw; background: var(--purple-neon); bottom: -10%; right: -10%; animation: float 12s ease-in-out infinite alternate-reverse; }

@keyframes gridMove { 0% { transform: rotateX(60deg) rotateZ(45deg) translateY(0); } 100% { transform: rotateX(60deg) rotateZ(45deg) translateY(50px); } }
@keyframes float { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(5%, 10%) scale(1.1); } }

/* Typography */
h1, h2, h3, .brand-text { font-family: var(--font-heading); font-weight: 900; letter-spacing: -0.05em; }
a { color: var(--text-primary); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--cyan-neon); }
.text-center { text-align: center; }
.gradient-text { background: linear-gradient(135deg, var(--cyan-neon), var(--purple-neon)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Structural */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.glass-card { background: var(--bg-glass); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid var(--border-glass); border-radius: 24px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8); }

/* Buttons & Tags */
.tag { display: inline-block; padding: 0.5rem 1.2rem; background: rgba(0, 240, 255, 0.1); border: 1px solid var(--cyan-neon); color: var(--cyan-neon); border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2rem; box-shadow: 0 0 15px rgba(0, 240, 255, 0.2) inset; }
.btn-solid { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--text-primary); color: var(--bg-dark) !important; padding: 1.2rem 2.5rem; border-radius: 12px; font-weight: 600; font-family: var(--font-body); border: none; cursor: pointer; transition: 0.4s; font-size: 1.05rem; box-shadow: 0 10px 20px rgba(255,255,255,0.1); }
.btn-solid:hover { background: var(--cyan-neon); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 240, 255, 0.4); }
.btn-outline { padding: 0.8rem 1.8rem; border: 1px solid var(--cyan-neon); color: var(--text-primary); border-radius: 10px; font-weight: 500; transition: 0.3s; }
.btn-outline:hover { background: var(--cyan-neon); color: var(--bg-dark); }
.btn-block { width: 100%; }

/* Header */
.glass-nav { position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(9, 9, 11, 0.8); border-bottom: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(16px); }
.header-wrap { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.brand { display: flex; align-items: center; gap: 12px; font-size: 2.2rem; }
.accent { color: var(--cyan-neon); }
.desktop-menu { display: flex; gap: 3rem; align-items: center; }
.desktop-menu a { font-size: 1rem; font-weight: 500; }

/* Sections */
section { padding: 9rem 0; }
.section-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; line-height: 1.05; }
.section-subtitle { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 4rem; max-width: 750px; margin-inline: auto; }

/* Hero */
.hero { display: flex; align-items: center; min-height: 100vh; padding-top: 130px; }
.hero-content { padding: 5rem 4rem; max-width: 900px; border-top: 2px solid var(--cyan-neon); }
.hero-h1 { font-size: clamp(3.8rem, 7vw, 6.5rem); line-height: 1; margin-bottom: 1.5rem; }
.hero-p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 3.5rem; line-height: 1.8; max-width: 750px; }

/* Features Layout */
.layout-asym { display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: center; }
.img-box { position: relative; padding: 1.5rem; transform: rotate(-2deg); transition: 0.5s; }
.img-box:hover { transform: rotate(0); }
.img-box img { width: 100%; border-radius: 16px; display: block; filter: contrast(1.1) brightness(0.9); }
.floating-badge { position: absolute; bottom: -30px; right: -30px; background: var(--bg-dark); border: 1px solid var(--purple-neon); padding: 1.5rem 2.5rem; border-radius: 16px; display: flex; align-items: center; gap: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.8); }
.floating-badge i { font-size: 2.2rem; color: var(--purple-neon); }
.b-number { display: block; font-size: 2.2rem; font-weight: 900; font-family: var(--font-heading); line-height: 1; }
.b-text { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.feature-list { list-style: none; margin-top: 3rem; }
.feature-list li { display: flex; gap: 25px; margin-bottom: 3rem; }
.icon-wrap { background: rgba(0, 240, 255, 0.1); border: 1px solid var(--cyan-neon); width: 65px; height: 65px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-wrap i { font-size: 1.6rem; color: var(--cyan-neon); }
.feat-desc h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.feat-desc p { color: var(--text-muted); font-size: 1.05rem; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; }
.process-card { padding: 3.5rem 3rem; position: relative; transition: 0.4s; overflow: hidden; }
.process-card:hover { transform: translateY(-10px); border-color: var(--cyan-neon); }
.p-number { position: absolute; top: -10px; right: 10px; font-family: var(--font-heading); font-size: 8rem; font-weight: 900; color: rgba(255,255,255,0.03); line-height: 1; z-index: 0; }
.process-card h3 { font-size: 1.5rem; color: var(--text-primary); margin-bottom: 1rem; position: relative; z-index: 1; }
.process-card p { color: var(--text-muted); position: relative; z-index: 1; font-size: 1.05rem; }

/* About Section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text { padding: 4rem; border-left: 4px solid var(--purple-neon); }
.about-text p { margin-bottom: 1.8rem; color: var(--text-muted); font-size: 1.1rem; }
.rounded-img { width: 100%; border-radius: 24px; border: 1px solid var(--border-glass); opacity: 0.85; filter: grayscale(20%); }

/* Form Section */
.form-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; padding: 5rem; }
.trust-marks { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 3rem; color: var(--cyan-neon); font-size: 1rem; font-weight: 500; }
.input-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.input-group { margin-bottom: 1.8rem; }
label { display: block; margin-bottom: 0.6rem; font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
input { width: 100%; padding: 1.2rem 1.5rem; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: white; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; }
input:focus { outline: none; border-color: var(--cyan-neon); background: rgba(0,0,0,0.8); box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.2); }
.consent-wrapper { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 2.5rem; font-size: 0.9rem; color: var(--text-muted); }
.consent-wrapper input { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--purple-neon); cursor: pointer; }
.consent-wrapper a { color: var(--cyan-neon); text-decoration: underline; }
.alert-box { text-align: center; padding: 3rem; border: 1px solid #10b981; border-radius: 12px; background: rgba(16, 185, 129, 0.1); color: #10b981; margin-top: 1rem; }

/* FAQ Section */
.accordion { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.acc-item { padding: 2rem 2.5rem; cursor: pointer; border-left: 4px solid transparent; }
.acc-item:hover { border-left-color: var(--cyan-neon); }
.acc-item summary { font-weight: 600; font-size: 1.2rem; list-style: none; display: flex; justify-content: space-between; align-items: center; outline: none; }
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary::after { content: '\f067'; font-family: 'FontAwesome'; color: var(--purple-neon); transition: 0.3s; }
.acc-item[open] summary::after { transform: rotate(45deg); color: var(--cyan-neon); }
.acc-content { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 1.05rem; }

/* Footer */
.main-footer { border-radius: 0; border-bottom: none; border-left: none; border-right: none; padding: 6rem 0 2rem; margin-top: 6rem; background: rgba(0, 0, 0, 0.6); }
.footer-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 6rem; margin-bottom: 4rem; }
.company-address { margin: 1.5rem 0; color: var(--text-muted); line-height: 1.8; }
.contact-info p { margin-bottom: 0.8rem; color: var(--text-muted); }
.contact-info i { color: var(--cyan-neon); margin-right: 12px; width: 20px; text-align: center; }
.links-col h3 { margin-bottom: 1.8rem; font-size: 1.3rem; color: #fff; }
.links-col nav { display: flex; flex-direction: column; gap: 1.2rem; }
.links-col a { color: var(--text-muted); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2.5rem; color: #52525b; font-size: 0.9rem; }

/* Cookie Banner */
.cookie-bar { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 850px; padding: 1.8rem 2.5rem; z-index: 9999; display: none; align-items: center; justify-content: space-between; gap: 2rem; border-radius: 16px; border: 1px solid var(--purple-neon); }
.cookie-text { font-size: 0.95rem; color: var(--text-primary); }
.cookie-text a { color: var(--cyan-neon); }

/* Legal Pages (Premium White Cards) */
.legal-wrapper { padding-top: 160px; padding-bottom: 100px; }
.legal-card { max-width: 950px; margin: 0 auto; padding: 6rem; background: #ffffff; color: #18181b; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.legal-card h1 { font-size: 2.8rem; border-bottom: 2px solid #e4e4e7; padding-bottom: 1.5rem; margin-bottom: 3rem; color: #09090b; }
.legal-card h2 { font-size: 1.6rem; margin-top: 3.5rem; margin-bottom: 1.2rem; color: #7000FF; font-family: var(--font-body); font-weight: 700; }
.legal-card p, .legal-card li { color: #3f3f46; margin-bottom: 1.2rem; line-height: 1.8; font-size: 1.1rem; }
.legal-card ul { margin-left: 2.5rem; margin-bottom: 2rem; }
.legal-card a { color: #00F0FF; font-weight: 700; text-decoration: none; padding-bottom: 2px; border-bottom: 2px solid #00F0FF; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .layout-asym, .form-layout, .about-grid, .footer-layout { grid-template-columns: 1fr; gap: 4rem; }
    .input-split { grid-template-columns: 1fr; }
    .desktop-menu { display: none; }
    .hero-content, .form-layout { padding: 3rem; }
    .floating-badge { position: relative; bottom: auto; right: auto; margin-top: -20px; display: inline-flex; }
    .cookie-bar { flex-direction: column; text-align: center; }
    .legal-card { padding: 3rem; }
}
