/* Base Variables & Reset */
:root {
    --bg-dark: #0a0f16;
    --text-light: #e2e8f0;
    --accent-blue: #00d2ff;
    --accent-blue-dark: #3a7bd5;
    --glass-bg: rgba(25, 33, 44, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Syne', sans-serif;
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

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

/* Unique CSS: Animated Gradient Blobs */
.blob-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; filter: blur(90px); }
.blob { position: absolute; border-radius: 50%; opacity: 0.4; animation: drift 20s infinite alternate ease-in-out; }
.blob-1 { width: 50vw; height: 50vw; background: #00d2ff; top: -10%; left: -10%; }
.blob-2 { width: 40vw; height: 40vw; background: #3a7bd5; bottom: -10%; right: -10%; animation-delay: -5s; }
.blob-3 { width: 30vw; height: 30vw; background: #2c5364; top: 40%; left: 30%; animation-duration: 25s; }
@keyframes drift { 0% { transform: scale(1) translate(0, 0); } 100% { transform: scale(1.1) translate(50px, -50px); } }

/* Typography */
h1, h2, h3 { font-family: var(--font-display); color: #fff; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
.text-gradient {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-dark));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
a { color: var(--accent-blue); text-decoration: none; transition: 0.3s; }
a:hover { color: #fff; }

/* Utilities */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.spacer-y { margin-top: 7rem; margin-bottom: 7rem; }
.text-center { text-align: center; }
.d-none { display: none !important; }
.w-full { width: 100%; }

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow);
}
.glass-nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(10, 15, 22, 0.8); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border); padding: 1rem 0;
}

/* Nav & Header */
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; }
.logo i { color: var(--accent-blue); margin-right: 0.5rem; }
.desktop-nav a { margin-left: 2rem; font-weight: 500; color: #cbd5e1; }
.desktop-nav a:hover { color: var(--accent-blue); }

/* Buttons */
button, .btn-primary, .btn-sm, .btn-outline {
    font-family: var(--font-sans); font-weight: 700; cursor: pointer;
    border-radius: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    border: none; transition: all 0.3s;
}
.btn-primary { background: linear-gradient(90deg, var(--accent-blue-dark), var(--accent-blue)); color: #fff; padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3); }
.btn-sm { background: var(--accent-blue-dark); color: #fff; padding: 0.5rem 1.5rem; }
.btn-outline { background: transparent; border: 1px solid var(--accent-blue); color: var(--accent-blue); }
.btn-outline:hover { background: var(--accent-blue); color: #fff; }

/* Hero */
.hero { display: flex; align-items: center; gap: 3rem; min-height: 100vh; padding-top: 100px; }
.hero-content { flex: 1.2; }
.hero-media { flex: 1; }
.hero-media img { width: 100%; border-radius: 24px; object-fit: cover; box-shadow: var(--shadow); height: 500px;}
.pill-badge { display: inline-block; background: rgba(0,210,255,0.1); border: 1px solid var(--accent-blue); color: var(--accent-blue); padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.85rem; margin-bottom: 1.5rem; font-weight: 700; }

/* Split Sections */
.split-section { display: flex; align-items: center; gap: 4rem; }
.split-section.reverse { flex-direction: row-reverse; }
.split-image { flex: 1; }
.split-image img { width: 100%; border-radius: 24px; box-shadow: var(--shadow); }
.split-text { flex: 1; }
.feature-list { list-style: none; margin-top: 2rem; }
.feature-list li { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.icon-box { background: rgba(0,210,255,0.1); color: var(--accent-blue); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; font-size: 1.2rem; flex-shrink: 0;}

/* Grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.step-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--accent-blue); opacity: 0.5; margin-bottom: 1rem; line-height: 1; }

/* Form */
.form-wrapper { max-width: 750px; margin: 0 auto; }
.form-header { margin-bottom: 2.5rem; }
.form-row { display: flex; gap: 1.5rem; }
.form-group { flex: 1; margin-bottom: 1.5rem; display: flex; flex-direction: column; }
.form-group label { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.5rem; color: #cbd5e1; }
.form-group input { padding: 1rem; border-radius: 12px; background: rgba(0,0,0,0.3); border: 1px solid var(--glass-border); color: #fff; font-family: inherit; font-size: 1rem; transition: 0.3s; }
.form-group input:focus { outline: none; border-color: var(--accent-blue); }
.checkbox-wrap { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 2rem; font-size: 0.85rem; color: #94a3b8; }
.checkbox-wrap input { margin-top: 0.3rem; width: 16px; height: 16px; cursor: pointer; }
.success-alert { background: rgba(46, 204, 113, 0.2); border: 1px solid #2ecc71; color: #2ecc71; padding: 1rem; border-radius: 12px; margin-top: 1.5rem; text-align: center; }

/* Accordion */
.acc-item { border-bottom: 1px solid var(--glass-border); }
.acc-item:last-child { border-bottom: none; }
.acc-header { width: 100%; background: none; color: #fff; text-align: left; padding: 1.5rem 0; font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center; border-radius: 0;}
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.acc-body p { padding-bottom: 1.5rem; color: #cbd5e1; }

/* Footer */
footer { background: #05080c; padding: 4rem 0 2rem; border-top: 1px solid var(--glass-border); }
.footer-content { display: flex; justify-content: space-between; margin-bottom: 3rem; }
.footer-brand p { color: #64748b; margin-top: 1rem; font-size: 0.9rem; }
.footer-nav h4 { margin-bottom: 1rem; }
.footer-nav a { display: block; color: #64748b; margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-bottom { color: #475569; font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; }

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

/* Legal Pages Overrides */
.legal-page { background: #fff; color: #1e293b; padding: 120px 0 60px; }
.legal-page .glass-panel { background: #f8fafc; border: 1px solid #e2e8f0; color: #334155; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.legal-page h1, .legal-page h2, .legal-page h3 { color: #0f172a; margin-top: 2rem; }
.legal-page p, .legal-page li { color: #475569; margin-bottom: 1rem; }
.legal-page a { color: var(--accent-blue-dark); text-decoration: underline; }

/* Responsive */
@media(max-width: 992px) {
    .hero, .split-section, .split-section.reverse { flex-direction: column; text-align: center; }
    h1 { font-size: 2.8rem; }
    .grid-3 { grid-template-columns: 1fr; }
    .desktop-nav { display: none; }
    .form-row { flex-direction: column; gap: 0; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .footer-content { flex-direction: column; gap: 2rem; text-align: center; }
}