﻿/* Prarstebret Pro - Modern EdTech CSS */
:root {
    --bg-deep: #09090b; /* Very dark zinc */
    --glass-bg: rgba(24, 24, 27, 0.65);
    --glass-border: rgba(139, 92, 246, 0.2);
    --accent-violet: #8B5CF6;
    --accent-orange: #F97316;
    --text-primary: #f4f4f5;
    --text-muted: #a1a1aa;
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Unique CSS Element: Abstract Aurora Background */
.aurora-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; background: var(--bg-deep); }
.blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4; animation: float 20s infinite alternate; }
.blob-1 { width: 50vw; height: 50vw; background: var(--accent-violet); top: -20%; left: -10%; }
.blob-2 { width: 40vw; height: 40vw; background: var(--accent-orange); bottom: -10%; right: -10%; animation-delay: -5s; }
.blob-3 { width: 30vw; height: 30vw; background: #3b82f6; top: 40%; left: 40%; animation-duration: 25s; }
.glass-overlay { position: absolute; inset: 0; background: rgba(9, 9, 11, 0.7); backdrop-filter: blur(50px); -webkit-backdrop-filter: blur(50px); }
@keyframes float { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(10%, 15%) scale(1.1); } }

/* Typography */
h1, h2, h3, .brand-text { font-family: var(--font-head); font-weight: 800; letter-spacing: -1px; }
a { color: var(--text-primary); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--accent-orange); }
.text-center { text-align: center; }
.gradient-text { background: linear-gradient(90deg, var(--accent-violet), var(--accent-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

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

/* Buttons */
.btn-solid { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--text-primary); color: var(--bg-deep) !important; padding: 1.2rem 2.5rem; border-radius: 12px; font-weight: 700; font-family: var(--font-body); border: none; cursor: pointer; transition: 0.4s; box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1); font-size: 1.05rem; }
.btn-solid:hover { transform: translateY(-4px); background: var(--accent-orange); color: #fff !important; box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4); }
.btn-outline { padding: 0.8rem 1.8rem; border: 1px solid var(--accent-violet); color: var(--text-primary); border-radius: 10px; font-weight: 600; transition: 0.3s; }
.btn-outline:hover { background: var(--accent-violet); color: #fff; }
.btn-full { width: 100%; }

/* Header */
.top-nav { position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(9, 9, 11, 0.8); backdrop-filter: blur(10px); }
.nav-content { 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(--accent-orange); }
.main-menu { display: flex; gap: 3rem; align-items: center; }
.main-menu a { font-size: 1rem; font-weight: 500; }

/* Sections Global */
section { padding: 10rem 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: 700px; margin-inline: auto; }

/* Hero */
.hero { display: flex; align-items: center; min-height: 100vh; padding-top: 140px; }
.hero-content { padding: 5rem 4rem; max-width: 900px; border-top: 2px solid var(--accent-violet); }
.tagline { display: inline-block; padding: 0.5rem 1.2rem; background: rgba(139, 92, 246, 0.1); border: 1px solid var(--accent-violet); color: var(--accent-violet); border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2rem; }
.hero-h1 { font-size: clamp(3.5rem, 7vw, 6rem); 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; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; margin-top: 4rem; }
.process-card { padding: 3.5rem 3rem; position: relative; transition: 0.4s; overflow: hidden; }
.process-card:hover { transform: translateY(-10px); border-color: var(--accent-orange); }
.card-number { position: absolute; top: -10px; right: 10px; font-family: var(--font-head); 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; }

/* Features (Asymmetrical) */
.layout-asym { display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: center; }
.img-wrapper { position: relative; padding: 1.5rem; border-radius: 24px; transform: rotate(-2deg); transition: 0.5s; }
.img-wrapper:hover { transform: rotate(0); }
.img-wrapper 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-deep); border: 1px solid var(--accent-orange); padding: 1.5rem 2.5rem; border-radius: 16px; display: flex; align-items: center; gap: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.8); }
.floating-badge i { font-size: 2.5rem; color: var(--accent-orange); }
.badge-num { display: block; font-size: 2.5rem; font-weight: 900; font-family: var(--font-head); line-height: 1; }
.badge-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-box { background: rgba(139, 92, 246, 0.15); border: 1px solid var(--accent-violet); width: 70px; height: 70px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-box i { font-size: 1.8rem; color: var(--accent-violet); }
.feature-desc h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.feature-desc p { color: var(--text-muted); font-size: 1.05rem; }

/* Form */
.form-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; padding: 5rem; }
.trust-flags { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 3rem; color: var(--accent-violet); font-size: 1rem; font-weight: 600; }
.input-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.input-item { 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: 700; }
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(--accent-violet); background: rgba(0,0,0,0.8); box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15); }
.consent-box { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 2.5rem; font-size: 0.9rem; color: var(--text-muted); }
.consent-box input { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--accent-orange); cursor: pointer; }
.consent-box a { color: var(--accent-orange); text-decoration: underline; }
.alert-success { text-align: center; padding: 3rem; border: 1px solid #10b981; border-radius: 12px; background: rgba(16, 185, 129, 0.1); color: #10b981; margin-top: 1rem; }

/* About Section */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text { padding: 4rem; border-left: 4px solid var(--accent-orange); }
.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(--glass-border); opacity: 0.85; filter: grayscale(30%); }

/* FAQ */
.accordion-container { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.accordion-panel { padding: 2rem 2.5rem; cursor: pointer; border-left: 4px solid transparent; }
.accordion-panel:hover { border-left-color: var(--accent-violet); }
.accordion-panel summary { font-weight: 700; font-size: 1.2rem; list-style: none; display: flex; justify-content: space-between; align-items: center; outline: none; font-family: var(--font-head); }
.accordion-panel summary::-webkit-details-marker { display: none; }
.accordion-panel summary::after { content: '\f067'; font-family: 'FontAwesome'; color: var(--accent-violet); transition: 0.3s; }
.accordion-panel[open] summary::after { transform: rotate(45deg); }
.panel-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.4); }
.footer-grid { 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; }
.company-contact p { margin-bottom: 0.8rem; color: var(--text-muted); }
.company-contact i { color: var(--accent-orange); margin-right: 12px; width: 20px; text-align: center; }
.footer-links h3 { margin-bottom: 1.8rem; font-size: 1.3rem; color: #fff; }
.footer-links nav { display: flex; flex-direction: column; gap: 1.2rem; }
.footer-links a { color: var(--text-muted); font-weight: 500; }
.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(--accent-violet); }
.cookie-msg { font-size: 0.95rem; color: var(--text-primary); }
.cookie-msg a { color: var(--accent-orange); font-weight: 700; }

/* Legal Pages (Clean White Paper UI) */
.legal-wrapper { padding-top: 160px; padding-bottom: 100px; }
.white-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); }
.white-card h1 { font-size: 2.8rem; border-bottom: 2px solid #e4e4e7; padding-bottom: 1.5rem; margin-bottom: 3rem; color: #09090b; }
.white-card h2 { font-size: 1.6rem; margin-top: 3.5rem; margin-bottom: 1.2rem; color: #8B5CF6; font-family: var(--font-body); font-weight: 700; }
.white-card p, .white-card li { color: #3f3f46; margin-bottom: 1.2rem; line-height: 1.8; font-size: 1.1rem; }
.white-card ul { margin-left: 2.5rem; margin-bottom: 2rem; }
.white-card a { color: #8B5CF6; font-weight: 700; text-decoration: underline; }

/* Responsive */
@media (max-width: 1024px) {
    .layout-asym, .form-layout, .about-layout, .footer-grid { grid-template-columns: 1fr; gap: 4rem; }
    .input-split { grid-template-columns: 1fr; }
    .main-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; }
    .white-card { padding: 3rem; }
}
