/* AITYKE Home Page Styles - Orange & Black Morandi Theme */

.home-page {
    min-height: 100vh;
    background: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 var(--space-2xl);
}

/* Background Shapes */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-bg-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.hero-bg-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
}

.hero-bg-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 40%;
    left: 30%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(212, 132, 90, 0.15);
    color: var(--primary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--secondary);
    margin-bottom: var(--space-lg);
}

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

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero-actions .btn-primary {
    background: var(--primary);
    color: var(--text-inverse);
    box-shadow: 0 4px 20px rgba(212, 132, 90, 0.3);
}

.hero-actions .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 132, 90, 0.4);
}

.hero-actions .btn-outline {
    border-color: var(--secondary);
    color: var(--secondary);
}

.hero-actions .btn-outline:hover {
    background: var(--secondary);
    color: var(--text-inverse);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-xl);
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary);
}

.hero-stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-stack {
    position: relative;
    width: 320px;
    height: 400px;
}

.hero-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--surface);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.hero-card-back {
    transform: rotate(-6deg) translateX(-20px);
    background: var(--secondary);
    opacity: 0.2;
}

.hero-card-main {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.radar-preview {
    width: 200px;
    height: 200px;
    margin-bottom: var(--space-lg);
}

/* Animated Radar Chart Styles */
.radar-chart-animated {
    overflow: visible;
}

.radar-grid circle {
    animation: gridPulse 4s ease-in-out infinite;
}

.radar-grid circle:nth-child(1) { animation-delay: 0s; }
.radar-grid circle:nth-child(2) { animation-delay: 0.1s; }
.radar-grid circle:nth-child(3) { animation-delay: 0.2s; }
.radar-grid circle:nth-child(4) { animation-delay: 0.3s; }

@keyframes gridPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.radar-ghost {
    opacity: 0.6;
}

.radar-main {
    filter: drop-shadow(0 4px 12px rgba(212, 132, 90, 0.3));
    transition: filter 0.3s ease;
}

.radar-preview:hover .radar-main {
    filter: drop-shadow(0 6px 20px rgba(212, 132, 90, 0.4));
}

.radar-dot {
    transition: transform 0.2s ease, r 0.2s ease;
    transform-origin: center;
}

.radar-dot.pulse {
    animation: dotPulse 0.3s ease-out;
}

@keyframes dotPulse {
    0% { r: 4; }
    50% { r: 8; }
    100% { r: 4; }
}

.radar-preview:hover .radar-dot {
    r: 5;
}

.improvement-indicator {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 1s forwards;
}

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

.improvement-indicator rect {
    filter: drop-shadow(0 2px 8px rgba(90, 158, 111, 0.3));
}

/* Glow effect on hover */
.radar-preview:hover .radar-main {
    fill: rgba(212, 132, 90, 0.35);
}

/* Add subtle float animation to the card */
.hero-card-main {
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-card-info {
    text-align: center;
}

.hero-card-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.hero-card-meta {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(212, 132, 90, 0.1);
    color: var(--primary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin: 0;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    text-align: center;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    background: var(--background);
    transform: translateY(-5px);
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: rgba(212, 132, 90, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.6;
}

/* ===== TOOLS SECTION ===== */
.tools-section {
    background: var(--background);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.tool-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tool-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tool-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-md);
    background: rgba(212, 132, 90, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.tool-card p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-section {
    background: var(--surface);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-lg);
}

.step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: var(--space-xl);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    background: var(--primary);
    color: var(--text-inverse);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    font-size: var(--font-size-lg);
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.step-card p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* How It Works Tabs */
.how-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--space-xl);
}
.how-tab {
    padding: 10px 24px;
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    background: transparent;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}
.how-tab:hover { border-color: var(--primary); color: var(--primary); }
.how-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.how-path { display: none; }
.how-path.active { display: block; }

/* Journey Chart */
.journey-section {
    margin-top: 56px;
    text-align: center;
}
.journey-title {
    font-size: var(--font-size-xl);
    color: var(--secondary);
    margin-bottom: var(--space-xl);
}
.journey-chart {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}
.journey-stage {
    flex: 0 1 180px;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-xl);
    background: var(--background);
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.journey-stage--highlight {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 132, 90, 0.15);
}
.journey-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}
.journey-label {
    font-weight: 700;
    font-size: var(--font-size-md);
    color: var(--secondary);
    margin-bottom: 4px;
}
.journey-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}
.journey-arrow {
    display: flex;
    align-items: center;
    padding-top: 28px;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin-top: 50px;
    flex-shrink: 0;
}

/* ===== CAREER PATHWAY SECTION ===== */
.career-section {
    background: var(--background);
}

.career-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.career-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--border) 0%, var(--primary) 60%, #D4A94C 100%);
    transform: translateX(-50%);
    border-radius: 3px;
}

.career-stage {
    position: relative;
    width: 50%;
    padding: 0 40px 48px;
}

.career-stage--left {
    padding-right: 60px;
    text-align: right;
}

.career-stage--right {
    margin-left: 50%;
    padding-left: 60px;
    text-align: left;
}

.career-dot {
    position: absolute;
    top: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--surface);
    border: 3px solid var(--primary);
    z-index: 1;
}

.career-stage--left .career-dot {
    right: -9px;
}

.career-stage--right .career-dot {
    left: -9px;
}

.career-dot--highlight {
    width: 22px;
    height: 22px;
    border-color: #D4A94C;
    background: #D4A94C;
    box-shadow: 0 0 0 6px rgba(212, 169, 76, 0.2);
}

.career-stage--right .career-dot--highlight {
    left: -11px;
}

.career-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--border);
    text-align: left;
    transition: all 0.3s ease;
}

.career-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.career-card--highlight {
    border-color: #D4A94C;
    box-shadow: 0 0 0 3px rgba(212, 169, 76, 0.1);
}

.career-badge {
    display: inline-block;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: rgba(212, 132, 90, 0.12);
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.career-badge--gold {
    background: linear-gradient(135deg, #D4A94C, #E8C76A);
    color: #fff;
}

.career-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.career-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md);
}

.career-list li {
    position: relative;
    padding: 4px 0 4px 20px;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.career-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.5;
}

.career-outcome {
    font-size: 13px;
    color: var(--text-muted);
    padding: 10px 14px;
    background: rgba(90, 158, 111, 0.08);
    border-radius: var(--radius-md);
    border-left: 3px solid rgba(90, 158, 111, 0.4);
}

.career-outcome--highlight {
    background: rgba(212, 169, 76, 0.08);
    border-left-color: #D4A94C;
}

.career-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: var(--space-md);
}

.career-role-pill {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: rgba(212, 132, 90, 0.1);
    color: var(--primary-dark);
}

.career-highlight-text {
    font-weight: 700;
    background: linear-gradient(90deg, #D4845A, #D4A94C, #5A9E6F, #D4A94C, #D4845A);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.career-salary {
    margin-bottom: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.career-salary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    font-size: 13px;
}

.career-salary-row:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.career-salary-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.career-salary-range {
    font-weight: 700;
    color: var(--primary);
}

/* ===== MODERN LOGIN CLUSTER ===== */
.login-cluster {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    margin-top: var(--space-lg);
}

.login-cluster-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.login-cluster-btn:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(212, 132, 90, 0.15);
    transform: translateY(-2px);
}

.login-cluster-btn:hover .login-cluster-arrow {
    transform: translateX(4px);
    color: var(--primary);
}

.login-cluster-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.login-cluster-icon.instructor {
    background: linear-gradient(135deg, #E8DDD5 0%, #D4C5B8 100%);
    color: var(--secondary);
}

.login-cluster-icon.parent {
    background: linear-gradient(135deg, #F5E6DB 0%, #EBCDB8 100%);
    color: var(--primary-dark);
}

.login-cluster-icon.ft {
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
    color: #0284C7;
}

.login-cluster-icon.learner {
    background: linear-gradient(135deg, #E0EBE4 0%, #C5D9CC 100%);
    color: #4A7C59;
}

.login-cluster-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.login-cluster-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
}

.login-cluster-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.login-cluster-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

/* ===== LEARNER PORTAL SECTION ===== */
.learner-portal-section {
    margin-top: var(--space-xl);
    max-width: 380px;
}

.learner-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.learner-divider::before,
.learner-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.learner-divider span {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}

.learner-portal-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #F8F6F3 0%, #F0EDE8 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.learner-portal-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 132, 90, 0.08) 0%, rgba(90, 158, 111, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.learner-portal-btn:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(212, 132, 90, 0.2);
    transform: translateY(-3px);
}

.learner-portal-btn:hover::before {
    opacity: 1;
}

.learner-portal-btn:hover .learner-portal-arrow {
    transform: translateX(6px);
    color: var(--primary);
}

.learner-portal-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #5A9E6F 0%, #4A8C5F 100%);
    color: white;
    position: relative;
    z-index: 1;
}

.learner-portal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.learner-portal-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary);
}

.learner-portal-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.learner-portal-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
}

.hero-login-hint {
    margin-top: var(--space-lg);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.hero-login-hint a {
    color: var(--primary);
    font-weight: 500;
}

.hero-login-hint a:hover {
    text-decoration: underline;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: var(--background);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border);
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--text-inverse);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: var(--space-lg);
}

.pricing-header h3 {
    font-size: var(--font-size-xl);
    color: var(--secondary);
    margin-bottom: var(--space-xs);
}

.pricing-desc {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-xs);
}

.pricing-amount .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-amount .period {
    color: var(--text-muted);
}

.pricing-annual {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
    text-align: left;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.btn-block {
    width: 100%;
    margin-top: auto;
}

.pricing-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    line-height: 1.3;
    font-size: var(--font-size-sm);
}
.pricing-cta strong {
    font-size: var(--font-size-md);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--text-inverse);
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    background: var(--primary);
    color: var(--text-inverse);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.cta-btn:hover {
    background: var(--primary-light);
    transform: translateX(5px);
}

.cta-btn-outline {
    background: transparent;
    color: var(--text-inverse);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--secondary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-2xl) 0;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: #fff;
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.footer-text {
    margin-bottom: var(--space-lg);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-copyright {
    font-size: var(--font-size-sm);
    opacity: 0.6;
    margin: 0;
}

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
        }
        
        .hero-content {
            max-width: 100%;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-actions {
            justify-content: center;
        }
        
        .login-cluster {
            max-width: 100%;
        }
        
        .login-cluster-btn {
            padding: 14px 16px;
        }
        
        .login-cluster-icon {
            width: 48px;
            height: 48px;
        }
        
        .learner-portal-section {
            max-width: 100%;
        }
        
        .learner-portal-btn {
            padding: 16px 18px;
        }
        
        .learner-portal-icon {
            width: 48px;
            height: 48px;
        }
        
        .hero-stats {
            justify-content: center;
        }
        
        .hero-visual {
            display: none;
        }
        
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .tools-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .steps-grid {
            flex-direction: column;
            align-items: center;
        }
        
        .step-connector {
            width: 2px;
            height: 40px;
            margin: 0;
        }

        .how-tabs {
            flex-wrap: wrap;
        }
        .how-tab {
            padding: 8px 16px;
            font-size: 12px;
        }

        .journey-chart {
            flex-direction: column;
            align-items: center;
        }
        .journey-arrow {
            transform: rotate(90deg);
            padding-top: 0;
        }
        .journey-stage {
            flex: none;
            width: 220px;
        }

        .career-timeline::before {
            left: 20px;
        }
        .career-stage,
        .career-stage--left,
        .career-stage--right {
            width: 100%;
            margin-left: 0;
            padding-left: 52px;
            padding-right: 0;
            text-align: left;
        }
        .career-stage--left .career-dot,
        .career-stage--right .career-dot {
            left: 11px;
            right: auto;
        }
        .career-stage--right .career-dot--highlight {
            left: 9px;
        }
        
        .pricing-grid {
            grid-template-columns: repeat(2, 1fr);
            max-width: 600px;
        }
    }
    
    @media (max-width: 768px) {
        .pricing-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
        }
        
        .pricing-card-featured {
            order: -1;
        }
        .hero-section {
            padding-top: 120px;
        }
        
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-actions {
            flex-direction: column;
        }
        
        .hero-stats {
            flex-direction: column;
            gap: var(--space-md);
        }
        
        .section {
            padding: 60px 0;
        }
        
        .features-grid,
        .tools-grid {
            grid-template-columns: 1fr;
        }
        
        .footer-links {
            flex-direction: column;
            gap: var(--space-md);
        }
    }
