:root {
    --warm-purple: #6c5ce7;
    --sunny-yellow: #fdcb6e;
    --soft-cream: #faf9ff;
    --text-charcoal: #2d3436;
    --font-serif: 'Georgia', serif;
    --font-sans: 'Inter', sans-serif;
}

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

body {
    background-color: var(--soft-cream);
    color: var(--text-charcoal);
    font-family: var(--font-sans);
    line-height: 1.8;
}

.desk-nexus-header {
    padding: 30px 10%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 5px solid var(--sunny-yellow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.desk-brand {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--warm-purple);
}

.desk-nav a {
    text-decoration: none;
    color: var(--text-charcoal);
    margin-left: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.desk-nav a:hover { color: var(--warm-purple); }

.human-hero {
    display: flex;
    padding: 100px 10%;
    align-items: center;
    gap: 60px;
}

.hero-text-desk { flex: 1; }
.hero-text-desk h1 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--warm-purple);
}

.hero-text-desk p {
    font-size: 1.4rem;
    color: #636e72;
    margin-bottom: 40px;
}

.cta-support {
    display: inline-block;
    background: var(--sunny-yellow);
    color: var(--text-charcoal);
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 0 #e6b033;
    transition: all 0.2s;
}

.cta-support:hover { transform: translateY(2px); box-shadow: 0 8px 0 #e6b033; }

.hero-visual-desk { flex: 1; position: relative; }
.hero-visual-desk img {
    width: 100%;
    border-radius: 40px;
    border: 15px solid #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.human-section {
    padding: 120px 10%;
}

.human-section h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
}

.support-bubble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.support-bubble {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    border-bottom: 10px solid var(--warm-purple);
    transition: transform 0.3s;
}

.support-bubble:hover { transform: translateY(-10px); }

.support-bubble h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--warm-purple);
}

.support-bubble p { color: #636e72; }

.faq-desk-nexus {
    max-width: 900px;
    margin: 100px auto;
}

.faq-bubble {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.faq-bubble-q {
    cursor: pointer;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
}

.faq-bubble-a {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: none;
    color: #636e72;
}

.enrollment-desk {
    background: var(--warm-purple);
    color: #fff;
    padding: 100px 10%;
    border-radius: 60px;
    margin: 50px 10%;
    text-align: center;
}

.desk-form {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: left;
}

.desk-form label { display: block; margin-bottom: 10px; font-weight: 600; font-size: 1.1rem; }
.desk-form input, .desk-form textarea {
    width: 100%;
    padding: 18px;
    background: #fff;
    border: none;
    border-radius: 12px;
    margin-bottom: 25px;
    font-family: var(--font-sans);
}

.desk-form button {
    width: 100%;
    padding: 20px;
    background: var(--sunny-yellow);
    border: none;
    border-radius: 12px;
    color: var(--text-charcoal);
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 8px 0 #e6b033;
}

.desk-footer {
    padding: 100px 10%;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.cookie-warm {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background: var(--text-charcoal);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    z-index: 2000;
}

@media (max-width: 1024px) {
    .human-hero { flex-direction: column; text-align: center; }
    .hero-text-desk h1 { font-size: 2.8rem; }
    .enrollment-desk { border-radius: 30px; margin: 20px 5%; padding: 60px 5%; }
}
