:root {
    --primary-color: #132A3F;
    --primary-dark: #0f1f2d;
    --secondary-color: #1e4d6e;
    --accent-color: #3b9dd9;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Strand Colors */
    --color-stem: #0066cc;
    --color-abm: #ff9500;
    --color-humss: #d91e63;
    --color-tvl: #ff5722;
    --color-sad: #9c27b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero .btn-lg {
    margin-top: 1rem;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.hero-subtext {
    font-size: 0.95rem;
    margin-top: 2rem;
    opacity: 0.9;
}

/* ===== MAIN CONTENT ===== */
main {
    padding: 2rem 0;
    min-height: calc(100vh - 300px);
}

.intro-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.intro-section:hover {
    box-shadow: var(--shadow-lg);
}

.intro-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.intro-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    text-align: center;
}

.benefit-item:hover {
    border-left-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.benefit-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== STRANDS OVERVIEW ===== */
.strands-overview {
    margin-bottom: 4rem;
}

.strands-overview h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-align: center;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.strands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.strand-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Strand-specific colors */
.strand-card:nth-child(1) {
    border-top-color: var(--color-stem);
}

.strand-card:nth-child(1) .highlight {
    background: linear-gradient(135deg, var(--color-stem), #0099ff);
}

.strand-card:nth-child(1) h3 {
    color: var(--color-stem);
}

.strand-card:nth-child(1) strong {
    color: var(--color-stem);
}

.strand-card:nth-child(2) {
    border-top-color: var(--color-abm);
}

.strand-card:nth-child(2) .highlight {
    background: linear-gradient(135deg, var(--color-abm), #ffb74d);
}

.strand-card:nth-child(2) h3 {
    color: var(--color-abm);
}

.strand-card:nth-child(2) strong {
    color: var(--color-abm);
}

.strand-card:nth-child(3) {
    border-top-color: var(--color-humss);
}

.strand-card:nth-child(3) .highlight {
    background: linear-gradient(135deg, var(--color-humss), #ec407a);
}

.strand-card:nth-child(3) h3 {
    color: var(--color-humss);
}

.strand-card:nth-child(3) strong {
    color: var(--color-humss);
}

.strand-card:nth-child(4) {
    border-top-color: var(--color-tvl);
}

.strand-card:nth-child(4) .highlight {
    background: linear-gradient(135deg, var(--color-tvl), #ff7043);
}

.strand-card:nth-child(4) h3 {
    color: var(--color-tvl);
}

.strand-card:nth-child(4) strong {
    color: var(--color-tvl);
}

.strand-card:nth-child(5) {
    border-top-color: var(--color-sad);
}

.strand-card:nth-child(5) .highlight {
    background: linear-gradient(135deg, var(--color-sad), #ba68c8);
}

.strand-card:nth-child(5) h3 {
    color: var(--color-sad);
}

.strand-card:nth-child(5) strong {
    color: var(--color-sad);
}

.strand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.strand-card:nth-child(1)::before {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 153, 255, 0.08) 100%);
}

.strand-card:nth-child(2)::before {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.08) 0%, rgba(255, 183, 77, 0.08) 100%);
}

.strand-card:nth-child(3)::before {
    background: linear-gradient(135deg, rgba(217, 30, 99, 0.08) 0%, rgba(236, 64, 122, 0.08) 100%);
}

.strand-card:nth-child(4)::before {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.08) 0%, rgba(255, 112, 67, 0.08) 100%);
}

.strand-card:nth-child(5)::before {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.08) 0%, rgba(186, 104, 200, 0.08) 100%);
}

.strand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--accent-color);
}

.strand-card:hover::before {
    opacity: 1;
}

.strand-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    color: var(--primary-color);
}

.strand-card:nth-child(1) .strand-icon {
    color: var(--color-stem);
}

.strand-card:nth-child(2) .strand-icon {
    color: var(--color-abm);
}

.strand-card:nth-child(3) .strand-icon {
    color: var(--color-humss);
}

.strand-card:nth-child(4) .strand-icon {
    color: var(--color-tvl);
}

.strand-card:nth-child(5) .strand-icon {
    color: var(--color-sad);
}

.strand-card:hover .strand-icon {
    transform: scale(1.1) rotate(5deg);
}

.strand-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.strand-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.strand-card strong {
    color: var(--primary-color);
}

.strand-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    position: relative;
    z-index: 1;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.career-list {
    list-style: none;
    margin-top: 1.5rem;
}

.career-list li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.career-list li:before {
    content: "→ ";
    color: var(--secondary-color);
    font-weight: 600;
    margin-right: 0.5rem;
}

.strand-result-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.strand-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
}

.strand-result-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.strand-result-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.strand-result-card h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.strand-full-name {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Strand Score */
.strand-score {
    margin: 2.5rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
}

.strand-score p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.score-bar {
    width: 100%;
    height: 35px;
    background-color: var(--border-color);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
    width: 0%;
    transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Strand Description */
.strand-description {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.strand-description h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.strand-description p {
    text-align: left;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Strand Info */
.strand-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.info-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.info-box:hover {
    border-left-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    color: var(--text-muted);
    transition: var(--transition);
}

.info-box li:last-child {
    border-bottom: none;
}

.info-box li:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.info-box li:before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: 700;
    margin-right: 0.75rem;
}

/* How it Works */
.how-it-works {
    margin-bottom: 4rem;
}

.how-it-works h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-align: center;
    font-weight: bold;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
    position: relative;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-color);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-color);
}

.step h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-time {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.step-divider {
    display: none;
}

/* Career Sections */
.career-section {
    margin-bottom: 3.5rem;
}

.career-section h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    font-weight: bold;
}

.career-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.career-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-color);
}

.career-card:hover::before {
    opacity: 0.05;
}

.career-card > * {
    position: relative;
    z-index: 1;
}

.career-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    font-weight: bold;
}

.career-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Alternative Strands Section */
.alternative-section {
    margin-bottom: 3.5rem;
}

.alternative-section h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    font-weight: bold;
}

.alternative-strands {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.alt-strand-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    border-top: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.alt-strand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.alt-strand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-color);
}

.alt-strand-card:hover::before {
    opacity: 0.05;
}

.alt-strand-card > * {
    position: relative;
    z-index: 1;
}

.alt-strand-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.alt-strand-card:hover .alt-strand-icon {
    transform: scale(1.15) rotate(-5deg);
}

.alt-strand-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.alt-strand-score {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-block;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="20" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="30" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.5;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta-section > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.cta-features span {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-section .btn-primary {
    margin-top: 1.5rem;
}

.cta-footer {
    margin-top: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, rgba(30, 41, 59, 0.95) 100%);
    color: var(--white);
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer p {
    margin: 0 0 0.75rem 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-subtext {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
}

/* ===== QUIZ PAGE STYLES ===== */
.quiz-container {
    padding: 2rem 0;
}

.quiz-header {
    text-align: center;
    margin-bottom: 3rem;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.quiz-header h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.quiz-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Progress Section */
.progress-section {
    margin-bottom: 2.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.progress-info {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: var(--border-color);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
}

/* Quiz Form */
.quiz-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Results Container Animation */
.results-container {
    animation: slideUp 0.5s ease-out;
}

/* Results Header */
.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.results-header h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 800;
}

.results-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Recommended Strand Card */
.recommended-strand {
    margin-bottom: 3rem;
}

.question-card {
    margin-bottom: 2.5rem;
}

.question-text {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 600;
}

/* Answers Container */
.answers-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Answer Options */
.answer-option {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.answer-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    border-radius: 10px;
    z-index: -1;
    transition: var(--transition);
}

.answer-option:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(240, 147, 251, 0.05));
}

.answer-option input[type="radio"] {
    margin-right: 1rem;
    cursor: pointer;
    width: 22px;
    height: 22px;
    min-width: 22px;
    accent-color: var(--primary-color);
    transition: var(--transition);
}

.answer-option input[type="radio"]:checked {
    transform: scale(1.1);
}

.answer-option input[type="radio"]:checked + .answer-text {
    color: var(--primary-color);
    font-weight: 700;
}

.answer-text {
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition);
    user-select: none;
}

/* Quiz Navigation */
.quiz-navigation {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 3.5rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .intro-section {
        padding: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .strands-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }

    .cta-features {
        gap: 1rem;
        flex-direction: column;
    }

    .results-header h1 {
        font-size: 2rem;
    }

    .strand-result-card {
        padding: 1.75rem;
    }

    .strand-result-icon {
        font-size: 4rem;
    }

    .strand-info {
        grid-template-columns: 1fr;
    }

    .career-list-grid,
    .alternative-strands {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .btn {
        width: 100%;
    }

    .quiz-header {
        padding: 2rem 1.5rem;
    }

    .quiz-header h1 {
        font-size: 1.8rem;
    }

    .question-text {
        font-size: 1.2rem;
    }

    .quiz-form {
        padding: 1.5rem;
    }

    .quiz-navigation {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .quiz-navigation .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 2.5rem 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
    }

    .strand-card {
        padding: 1.5rem;
    }

    .strand-icon {
        font-size: 3rem;
    }

    .strand-card h3 {
        font-size: 1.2rem;
    }

    .benefit-item {
        padding: 1rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step-icon {
        font-size: 2rem;
    }

    .alt-strand-icon {
        font-size: 3rem;
    }

    .strand-result-card {
        padding: 1.5rem;
    }

    .strand-result-icon {
        font-size: 3.5rem;
    }

    .strand-result-card h2 {
        font-size: 1.8rem;
    }

    .info-box {
        padding: 1.5rem;
    }

    .answer-option {
        padding: 1rem;
    }

    .answer-option input[type="radio"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer p {
        font-size: 0.85rem;
    }
}
