/* ---------------------------------------------------
   GLOBAL
--------------------------------------------------- */
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", Arial, sans-serif;
    background: #f7f9fb;
    color: #2b2b2b;
}

h1, h2, h3 {
    margin: 0;
    font-weight: 700;
    color: #1c1d1f;
}

p {
    margin: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.25s ease;
}

/* ---------------------------------------------------
   NAVBAR
--------------------------------------------------- */
.navbar {
    width: 100%;
    background: #ffffffcc;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-logo a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a:hover {
    color: #2563eb;
}

@media (max-width: 750px) {
    .nav-links {
        display: none;
    }
}

/* ---------------------------------------------------
   HERO SECTION
--------------------------------------------------- */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 10%;
    min-height: 80vh;
    background: linear-gradient(135deg, #ffffff 0%, #eff5ff 100%);
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.subtitle {
    margin-bottom: 35px;
    font-size: 1.25rem;
    color: #4a4f55;
}

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

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.btn.primary {
    background: #2563eb;
    color: white;
    box-shadow: 0 8px 20px rgba(37,99,235,0.25);
}

.btn.primary:hover {
    background: #1d4ed8;
}

.btn.secondary {
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn.secondary:hover {
    background: #2563eb;
    color: #fff;
}

/* Hero illustration */
.hero-image img {
    max-width: 420px;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.15));
}

.card-icon {
    font-size: 2.4rem;
    color: #2563eb;
    margin-bottom: 12px;
}


@media (max-width: 950px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-image {
        margin-top: 40px;
    }
}

/* ---------------------------------------------------
   FEATURES SECTION
--------------------------------------------------- */
.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 10%;
}

.feature {
    background: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.06);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature p {
    color: #555;
}

@media (max-width: 950px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
}

/* ---------------------------------------------------
   PAGE WRAPPER
--------------------------------------------------- */
.page-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 10%;
}

.page-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.page-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

/* ---------------------------------------------------
   PROFESSIONS
--------------------------------------------------- */
.professions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.profession-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border: 1px solid #e6eaf0;
    text-align: center;
    transition: 0.25s ease;
}

.profession-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

/* ---------------------------------------------------
   ABOUT PAGE
--------------------------------------------------- */
.about-page {
    max-width: 900px;
    margin: 40px auto;
}

.about-section {
    background: #fff;
    padding: 25px 30px;
    border-radius: 14px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.about-section h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.about-section p,
.about-section li {
    color: #444;
}

/* ---------------------------------------------------
   GLOSSARY — STATIC CARDS + FONT AWESOME
--------------------------------------------------- */
.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.glossary-card {
    background: #fff;
    padding: 25px 28px;
    border-radius: 18px;
    border: 1px solid #e8edf4;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}

.glossary-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.glossary-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.glossary-icon {
    font-size: 28px;
    color: #2563eb;
    width: 32px;
    text-align: center;
}

.glossary-category {
    font-size: 1.4rem;
}

.glossary-list {
    padding-left: 20px;
}

.glossary-list li {
    margin-bottom: 10px;
    color: #444;
}

/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */
.footer {
    background: #f1f4f9;
    margin-top: 60px;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-container {
    max-width: 1200px;
    padding: 0 10%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li a {
    color: #2563eb;
}

.footer-col ul li a:hover {
    color: #1d4ed8;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    color: #666;
    font-size: .9rem;
}

/* ------- PROFESSION PAGE ------- */

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 20px;
}

.back-link:hover {
    color: #1d4ed8;
}

.profession-page {
    max-width: 900px;
    margin: 40px auto;
}

.profession-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.profession-icon {
    font-size: 40px;
    color: #2563eb;
}

.profession-title {
    font-size: 2.2rem;
}

.profession-description {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
}

.skills-title {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.skills-list {
    padding-left: 20px;
}

.skills-list li {
    margin-bottom: 8px;
    color: #333;
}

/* ------- TEST ------- */

.test-form {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
}

.test-question {
    margin-bottom: 25px;
}

.test-question h3 {
    margin-bottom: 10px;
}

.test-question label {
    display: block;
    margin-bottom: 6px;
    cursor: pointer;
}

/* ----- TEST RESULT CARD ----- */

.result-card {
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 22px;
    max-width: 700px;
    margin: 40px auto;
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    text-align: center;
}

.result-icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 15px;
}

.result-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.result-profession {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1c1d1f;
    margin-bottom: 20px;
}

.result-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.result-button {
    display: inline-block;
}

.result-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.result-list li {
    margin-bottom: 6px;
    font-size: 1rem;
}

.chart-container svg {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 25px 0 40px 0;
}



