/* Base Styles */
:root {
    --bg-color: #f8fafc;
    --surface-color: rgba(255, 255, 255, 0.8);
    --surface-border: rgba(0, 0, 0, 0.1);
    --primary: #2563eb;
    --primary-glow: rgba(37, 99, 235, 0.3);
    --secondary: #7c3aed;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-alt: #f1f5f9;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Utilities */
.glass-card {
    background: var(--surface-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--surface-border);
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Typography & Components */
.mt-4 { margin-top: 1rem; }
.text-center { text-align: center; }

button, a {
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-body);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 12px 24px;
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-body);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--surface-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 1px;
}

.logo-dot {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content-left {
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-image-right {
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 550px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: float-img 6s ease-in-out infinite;
}

@keyframes float-img {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Split Sections */
.split-section {
    padding: 100px 0;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reverse-layout {
    direction: rtl;
}

.reverse-layout > * {
    direction: ltr;
}

.section-text {
    max-width: 600px;
}

.section-text h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.section-image {
    display: flex;
    justify-content: center;
}

.content-img {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.alt-bg {
    background: var(--bg-alt);
}

/* Detail Cards Grid */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.detail-card {
    background: white;
    border: 1px solid var(--surface-border);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.card-icon {
    width: 32px; height: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.detail-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Assessment Section */
.assessment-section {
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.assessment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.assessment-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.assessment-content > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.quiz-container {
    padding: 40px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.quiz-hero-icon {
    width: 64px; height: 64px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: var(--surface-border);
    border-radius: 3px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.3s ease;
}

.question-text {
    font-size: 1.4rem;
    margin-bottom: 30px;
    min-height: 60px;
}

.quiz-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-quiz {
    flex: 1;
    padding: 16px;
    background: white;
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-quiz:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.hidden { display: none !important; }

/* Abstract Assessment Visuals */
.assessment-visual {
    position: relative;
    height: 400px;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.shape-1 {
    width: 300px; height: 300px;
    background: rgba(59, 130, 246, 0.3);
    top: 10%; right: 10%;
}

.shape-2 {
    width: 250px; height: 250px;
    background: rgba(139, 92, 246, 0.3);
    bottom: 10%; left: 10%;
}

.glass-panel {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--surface-color);
    backdrop-filter: blur(20px);
    border: 1px solid var(--surface-border);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    z-index: 10;
    width: 80%;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -55%); }
    100% { transform: translate(-50%, -50%); }
}

/* Section headers */
.section-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Team / Leadership Section */
.team-section {
    padding: 100px 0;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.team-card {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    background: white;
    border: 1px solid var(--surface-border);
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.avatar {
    width: 100px; height: 100px;
    background: var(--bg-alt);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
}

.team-card h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.team-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: left;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--surface-border);
    display: none;
}

.team-desc.show {
    display: block;
}

.btn-read-more {
    background: none;
    border: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}
.btn-read-more:hover { text-decoration: underline; }

/* Footer */
.footer {
    border-top: 1px solid var(--surface-border);
    padding: 60px 0 30px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
    margin-top: 16px;
}

.contact-form {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.input-light {
    background: white;
    border: 1px solid var(--surface-border);
    color: var(--text-main);
    padding: 12px 16px;
    border-radius: 8px;
    outline: none;
    font-family: var(--font-body);
    width: 250px;
}

.input-light:focus {
    border-color: var(--primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 30px;
    border-top: 1px solid var(--surface-border);
}

/* Modal */
.modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--surface-border);
    background: var(--bg-color);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.ogasuite-tabs {
    display: flex;
    gap: 10px;
    margin-right: auto;
    margin-left: 30px;
}

.btn-tab {
    background: transparent;
    border: 1px solid var(--surface-border);
    padding: 8px 16px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-muted);
}
.btn-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.btn-close:hover { color: white; }

.modal-body {
    flex: 1;
    padding: 0;
}

.ogasuite-iframe {
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container, .split-container { grid-template-columns: 1fr; }
    .hero-title { font-size: 3rem; }
    .assessment-container { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .reverse-layout { direction: ltr; }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 480px;
    z-index: 999;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: slideUpCookie 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 1px solid var(--surface-border);
}

@media (max-width: 600px) {
    .cookie-banner {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }
}

.cookie-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
}

.cookie-icon-wrapper {
    background: rgba(37, 99, 235, 0.1);
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-text h4 {
    margin: 0 0 6px 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

@keyframes slideUpCookie {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* OgaSuite Lock Screen styling */
.ogasuite-lock-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--bg-color);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    padding: 40px;
    box-sizing: border-box;
}

.lock-card {
    text-align: center;
    max-width: 400px;
    width: 100%;
    padding: 40px 30px;
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
}

.lock-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.lock-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-main);
    margin: 0 0 10px 0;
    font-weight: 700;
}

.lock-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.pin-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.pin-input-group input {
    flex: 1;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--surface-border);
    padding: 12px 16px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    outline: none;
    transition: all 0.3s ease;
}

.pin-input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    background: white;
}

.lock-error {
    font-size: 0.85rem;
    color: #ef4444;
    font-weight: 500;
}

/* Mobile Navigation styles */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--surface-border);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.mobile-nav a:hover {
    color: var(--text-main);
}

/* Avatar Image Crop */
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


