﻿@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&family=Manrope:wght@300;400;600&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

:root {
    --bg-deep: #050814;
    --bg-surface: #0B132B;
    --accent-cyan: #00F0FF;
    --accent-violet: #7B2CBF;
    --text-light: #F8F9FA;
    --text-muted: #8E9BAE;
    --border-color: rgba(0, 240, 255, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
    font-family: 'Manrope', sans-serif; 
    background-color: var(--bg-deep); 
    color: var(--text-light); 
    line-height: 1.6; 
    overflow-x: hidden;
    position: relative;
}

/* Unique Graphic Element: Animated Glass Hexagons */
.glass-hex {
    position: fixed;
    width: 300px; height: 346px;
    background: rgba(123, 44, 191, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
    animation: drift 25s infinite linear;
}
.hex-1 { top: 10%; left: -10%; transform: rotate(15deg); }
.hex-2 { bottom: 10%; right: -5%; width: 400px; height: 461px; background: rgba(0, 240, 255, 0.05); animation-direction: reverse; animation-duration: 35s; }
@keyframes drift {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-50px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; text-transform: uppercase; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }

/* Typography */
h1 { font-size: clamp(3rem, 8vw, 6.5rem); line-height: 0.95; margin-bottom: 24px; color: #FFF; text-shadow: 0 0 40px rgba(0, 240, 255, 0.3); }
h1 span { color: transparent; -webkit-text-stroke: 2px var(--accent-cyan); }
h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 30px; }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 15px; color: var(--accent-cyan); }
p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 20px; }

/* Layout */
section { padding: 120px 5%; position: relative; }
.container { max-width: 1400px; margin: 0 auto; }

/* Header */
header { position: fixed; top: 0; width: 100%; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; background: rgba(5, 8, 20, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-color); z-index: 1000; }
.logo { display: flex; align-items: center; gap: 15px; font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 700; color: #FFF; }
.logo img { width: 35px; height: 35px; }
.nav-links { display: none; }
.btn-primary { background: var(--accent-violet); color: #FFF; padding: 16px 32px; border-radius: 4px; font-weight: 600; text-transform: uppercase; font-family: 'Space Grotesk', sans-serif; letter-spacing: 1px; border: 1px solid var(--accent-violet); cursor: pointer; transition: 0.4s; display: inline-block; }
.btn-primary:hover { background: transparent; border-color: var(--accent-cyan); color: var(--accent-cyan); box-shadow: 0 0 20px rgba(0, 240, 255, 0.4); }

/* Hero */
.hero { min-height: 90vh; display: flex; align-items: center; padding-top: 150px; }
.hero-content { max-width: 900px; }
.hero p { font-size: clamp(1.2rem, 2vw, 1.6rem); max-width: 750px; margin-bottom: 50px; color: #D1D8E0; }

/* Form Section (Placed early) */
.form-section { background: var(--bg-surface); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.form-wrapper { max-width: 800px; margin: 0 auto; background: rgba(5, 8, 20, 0.6); padding: 50px; border: 1px solid var(--border-color); border-radius: 12px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.form-wrapper h2 { text-align: center; margin-bottom: 15px; font-size: 2.5rem; }
.form-group { margin-bottom: 20px; }
.form-group input { width: 100%; padding: 18px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; color: #FFF; font-family: 'Manrope', sans-serif; font-size: 1.05rem; transition: 0.3s; }
.form-group input:focus { outline: none; border-color: var(--accent-cyan); background: rgba(0, 240, 255, 0.05); }
.checkbox-group { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 30px; }
.checkbox-group input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--accent-cyan); }
.checkbox-group label { font-size: 0.9rem; color: var(--text-muted); }
.success-msg { display: none; text-align: center; padding: 40px 20px; }
.success-msg i { font-size: 5rem; color: var(--accent-cyan); margin-bottom: 20px; }
.success-msg h3 { font-size: 2rem; color: #FFF; margin-bottom: 15px; font-family: 'Space Grotesk'; }

/* Random Section: Methodology */
.methodology { display: grid; grid-template-columns: 1fr; gap: 30px; }
.method-card { padding: 40px; background: rgba(255,255,255,0.02); border-left: 4px solid var(--accent-violet); transition: 0.3s; }
.method-card:hover { background: rgba(123, 44, 191, 0.1); border-color: var(--accent-cyan); transform: translateX(10px); }
.method-card span { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; color: rgba(255,255,255,0.1); position: absolute; right: 20px; top: 10px; }

/* Features (Asymmetric) */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
.features-img { position: relative; }
.features-img img { border: 1px solid var(--border-color); box-shadow: -20px 20px 0 rgba(123, 44, 191, 0.3); }
.features-list { list-style: none; margin-top: 30px; }
.features-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; font-size: 1.15rem; color: #FFF; }
.features-list i { color: var(--accent-cyan); font-size: 1.5rem; margin-top: 3px; }

/* About / Umbrella Brand */
.about { background: var(--bg-surface); border-top: 1px solid var(--border-color); }
.about-content { max-width: 900px; margin: 0 auto; text-align: center; }
.brand-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 40px; }
.tag { padding: 10px 20px; border: 1px solid var(--border-color); border-radius: 50px; font-size: 0.9rem; color: var(--accent-cyan); background: rgba(0,240,255,0.05); }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
details { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 25px 0; }
summary { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; color: #FFF; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f067'; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--accent-cyan); transition: 0.4s; }
details[open] summary::after { transform: rotate(135deg); color: var(--accent-violet); }
.faq-content { padding-top: 20px; color: var(--text-muted); font-size: 1.1rem; }

/* Footer */
footer { background: #02040A; padding: 80px 5% 40px; border-top: 1px solid var(--border-color); position: relative; z-index: 10; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 50px; margin-bottom: 60px; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 20px; color: #FFF; }
.footer-col p, .footer-col a { display: block; margin-bottom: 12px; color: var(--text-muted); font-size: 0.95rem; }
.footer-col a:hover { color: var(--accent-cyan); padding-left: 5px; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: #555; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -200px; left: 0; width: 100%; background: var(--bg-surface); padding: 25px 5%; display: flex; flex-direction: column; gap: 20px; z-index: 9999; border-top: 2px solid var(--accent-cyan); transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 -10px 40px rgba(0,0,0,0.8); }
.cookie-banner.show { bottom: 0; }
.cookie-text { font-size: 0.95rem; color: var(--text-muted); }
.cookie-btns { display: flex; gap: 15px; }
.btn-cookie { padding: 12px 24px; border-radius: 4px; cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; transition: 0.3s; }
.btn-accept { background: var(--accent-cyan); color: #000; border: none; }
.btn-decline { background: transparent; color: #FFF; border: 1px solid var(--text-muted); }

/* Legal Pages Styling (Premium White Card) */
.legal-main { padding: 160px 5% 100px; }
.legal-card { max-width: 900px; margin: 0 auto; background: #FFFFFF; color: #111; padding: 60px; border-radius: 8px; box-shadow: 0 30px 60px rgba(0,240,255,0.1); position: relative; z-index: 10; }
.legal-card h1 { color: #050814; font-size: clamp(2.5rem, 5vw, 4rem); border-bottom: 4px solid var(--accent-violet); padding-bottom: 20px; margin-bottom: 40px; text-shadow: none; }
.legal-card h2 { color: #0B132B; margin: 40px 0 20px; font-size: 2rem; }
.legal-card p, .legal-card li { color: #333; margin-bottom: 15px; font-size: 1.1rem; line-height: 1.8; }
.legal-card ul { padding-left: 20px; margin-bottom: 25px; }
.map-iframe { width: 100%; height: 400px; border: 0; margin-top: 30px; filter: grayscale(100%) contrast(1.2); }

/* Desktop Media Queries */
@media(min-width: 992px) {
    .nav-links { display: flex; gap: 40px; }
    .nav-links a { font-weight: 600; font-family: 'Space Grotesk', sans-serif; text-transform: uppercase; font-size: 1rem; }
    .nav-links a:hover { color: var(--accent-cyan); }
    
    .methodology { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: 1.2fr 1fr; }
    
    .form-wrapper { padding: 60px 80px; }
    .form-row { display: flex; gap: 20px; }
    .form-row .form-group { flex: 1; }
    
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
    
    .cookie-banner { flex-direction: row; justify-content: space-between; align-items: center; }
    .cookie-text { max-width: 60%; }
    .legal-card { padding: 80px 100px; }
}
