/* Premium Minimal Mentorship Page - Ultra Visual Appeal */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #FFFFFF;
    color: #1a1a1a;
    line-height: 1.8;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Hero Section - Dramatic & Eye-Catching */
.hero {
    padding: 120px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, #FFF0F5 0%, #FFF5F8 40%, #FFFBFC 70%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 67, 132, 0.12) 0%, rgba(255, 67, 132, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -35%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.15) 0%, rgba(255, 182, 193, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.05); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF0844 0%, #FF4384 40%, #FF6B9D 70%, #FFB3D1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    line-height: 1.15;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 12px rgba(255, 67, 132, 0.1);
}

.hero .subhead {
    font-size: 23px;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 28px;
    font-weight: 500;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero .supporting {
    font-size: 19px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 64px;
    font-weight: 400;
    font-style: italic;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Application Timing - Premium Card with Glow */
.application-timing {
    margin-top: 64px;
    padding: 56px 48px;
    background: white;
    border-radius: 28px;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 0 0 3px rgba(255, 67, 132, 0.1),
                0 16px 48px rgba(255, 67, 132, 0.15), 
                0 8px 24px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.application-timing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #FF0844 0%, #FF4384 25%, #FF6B9D 50%, #FFB3D1 75%, #FF4384 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

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

.timing-text {
    font-size: 20px;
    color: #2a2a2a;
    margin-bottom: 12px;
    font-weight: 600;
}

.timing-note {
    font-size: 17px;
    color: #666;
    margin-bottom: 48px;
}

/* Countdown Box - Vibrant & Engaging */
.countdown-box {
    margin: 48px 0;
}

.countdown-label {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF4384;
    margin-bottom: 28px;
}

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

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 28px;
    background: linear-gradient(135deg, #FF0844 0%, #FF4384 50%, #FF6B9D 100%);
    border-radius: 20px;
    min-width: 100px;
    box-shadow: 0 12px 32px rgba(255, 67, 132, 0.35), 
                0 6px 16px rgba(255, 23, 68, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.time-unit::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.time-unit:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 16px 48px rgba(255, 67, 132, 0.45), 
                0 8px 24px rgba(255, 23, 68, 0.3);
}

.time-unit:hover::before {
    opacity: 1;
}

.time-value {
    font-size: 42px;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.time-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.95);
}

/* Apply Button - Irresistible CTA */
.apply-btn {
    display: inline-block;
    padding: 22px 64px;
    background: linear-gradient(135deg, #FF0844 0%, #FF4384 50%, #FF6B9D 100%);
    color: white;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 32px rgba(255, 67, 132, 0.4), 
                0 4px 16px rgba(255, 23, 68, 0.2);
    margin-top: 40px;
    letter-spacing: 0.5px;
    text-transform: none;
    position: relative;
    overflow: hidden;
}

.apply-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.apply-btn:hover::before {
    left: 100%;
}

.apply-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 48px rgba(255, 67, 132, 0.5), 
                0 8px 24px rgba(255, 23, 68, 0.3);
}

.apply-btn-large {
    padding: 24px 72px;
    font-size: 22px;
}

/* Content Sections - Beautiful Spacing & Flow */
.content-section {
    padding: 120px 0;
    position: relative;
}

.content-section:nth-child(even) {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBFC 50%, #FFFFFF 100%);
}

.content-section h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.25;
    letter-spacing: -0.8px;
    position: relative;
    padding-bottom: 24px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #FF4384 0%, #FF6B9D 50%, #FFB3D1 100%);
    border-radius: 3px;
}

.content-section p {
    margin-bottom: 28px;
    color: #333;
    font-size: 18px;
    line-height: 1.85;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.content-section p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Outcomes Section - Stunning Visual List */
.outcomes {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFFBFC 50%, #FFFFFF 100%);
}

.outcomes-list {
    list-style: none;
    margin-top: 40px;
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(255, 67, 132, 0.1), 
                0 4px 16px rgba(0, 0, 0, 0.03);
    border: 2px solid rgba(255, 67, 132, 0.08);
}

.outcomes-list li {
    padding: 22px 0 22px 48px;
    position: relative;
    color: #2a2a2a;
    font-size: 19px;
    border-bottom: 1px solid rgba(255, 67, 132, 0.1);
    transition: all 0.3s ease;
}

.outcomes-list li:last-child {
    border-bottom: none;
}

.outcomes-list li:hover {
    padding-left: 52px;
    color: #FF4384;
}

.outcomes-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 22px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FF4384 0%, #FF6B9D 100%);
    color: white;
    font-weight: 800;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(255, 67, 132, 0.3);
    transition: all 0.3s ease;
}

.outcomes-list li:hover::before {
    transform: scale(1.1) rotate(360deg);
}

/* Simple List - Clean & Elegant */
.simple-list {
    list-style: none;
    margin: 36px 0;
}

.simple-list li {
    padding: 14px 0 14px 36px;
    position: relative;
    color: #333;
    font-size: 18px;
    line-height: 1.7;
}

.simple-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #FF4384;
    font-weight: 800;
    font-size: 22px;
}

/* What's Included - Stunning Feature Cards */
.whats-included {
    background: #FFFFFF;
}

.feature {
    margin-bottom: 32px;
    padding: 44px 40px;
    background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 100%);
    border-radius: 24px;
    border: 2px solid rgba(255, 67, 132, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, #FF4384 0%, #FF6B9D 50%, #FFB3D1 100%);
    transition: width 0.4s ease;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(255, 67, 132, 0.18), 
                0 8px 24px rgba(0, 0, 0, 0.05);
    border-color: rgba(255, 67, 132, 0.25);
}

.feature:hover::before {
    width: 12px;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature h3 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    letter-spacing: -0.3px;
}

.feature h3::before {
    content: '';
    display: none;
}

.feature p {
    margin-bottom: 0;
    color: #444;
    font-size: 17px;
}

/* Who It's For - Elegant Divider */
.who-for {
    background: linear-gradient(135deg, #FFFBFC 0%, #FFFFFF 100%);
}

.divider {
    height: 3px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(255, 179, 209, 0.3) 10%, 
        #FFB3D1 30%, 
        #FF6B9D 50%, 
        #FFB3D1 70%, 
        rgba(255, 179, 209, 0.3) 90%, 
        transparent 100%);
    margin: 56px 0;
    position: relative;
    border-radius: 2px;
}

.divider::after {
    content: '';
    display: none;
}

.not-for {
    color: #666;
    font-size: 17px;
    font-style: italic;
    padding: 28px 32px;
    background: linear-gradient(135deg, #F8F8F8 0%, #FAFAFA 100%);
    border-left: 5px solid #CCC;
    border-radius: 12px;
    line-height: 1.8;
}

/* FAQ - Interactive & Scannable */
.faq {
    background: #FFFFFF;
}

.faq-item {
    margin-bottom: 28px;
    padding: 40px;
    background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 67, 132, 0.12);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 67, 132, 0.25);
    box-shadow: 0 12px 32px rgba(255, 67, 132, 0.12);
    transform: translateY(-2px);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    font-size: 21px;
    font-weight: 800;
    color: #FF4384;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.faq-item h3::before {
    content: 'Q:';
    font-size: 18px;
    margin-right: 12px;
    color: #FF6B9D;
    font-weight: 900;
    flex-shrink: 0;
}

.faq-item p {
    margin-bottom: 0;
    color: #444;
    font-size: 17px;
    line-height: 1.8;
}

/* Self-Assessment - Interactive Quiz Game */
.self-assessment {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFFBFC 50%, #FFFFFF 100%);
}

.assessment-intro {
    font-size: 19px;
    color: #555;
    text-align: center;
    margin-bottom: 32px;
}

.quiz-disclaimer {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 20px 28px;
    background: linear-gradient(135deg, #FFF4E6 0%, #FFFFFF 100%);
    border: 3px solid #FFB74D;
    border-radius: 16px;
    text-align: center;
}

.quiz-disclaimer p {
    margin: 0;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.quiz-disclaimer strong {
    color: #FF6F00;
    font-weight: 700;
}

.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 48px 40px;
    border-radius: 28px;
    box-shadow: 0 16px 48px rgba(255, 67, 132, 0.12);
    border: 3px solid rgba(255, 67, 132, 0.15);
}

.quiz-question {
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.question-number {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #FF4384;
    margin-bottom: 20px;
    text-align: center;
}

.quiz-question h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.4;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 100%);
    border: 3px solid rgba(255, 67, 132, 0.15);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 17px;
    color: #333;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.quiz-option:hover {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFF5F8 100%);
    border-color: rgba(255, 67, 132, 0.3);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(255, 67, 132, 0.15);
}

.quiz-option:active {
    transform: translateX(8px) scale(0.98);
}

.option-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.option-text {
    flex: 1;
    line-height: 1.5;
}

/* Progress Bar */
.quiz-progress {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid rgba(255, 67, 132, 0.1);
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #F0F0F0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FF4384 0%, #FF6B9D 100%);
    transition: width 0.4s ease;
    border-radius: 6px;
}

.progress-text {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #FF4384;
}

/* Quiz Results */
.quiz-results {
    text-align: center;
    animation: slideIn 0.5s ease-out;
}

.results-content {
    padding: 48px 40px;
    border-radius: 24px;
    margin-bottom: 32px;
}

.results-content.cohort-fit {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFFFFF 100%);
    border: 3px solid rgba(255, 67, 132, 0.25);
}

.results-content.community-fit {
    background: linear-gradient(135deg, #F0F8FF 0%, #FFFFFF 100%);
    border: 3px solid rgba(67, 132, 255, 0.25);
}

.results-content.hybrid-fit {
    background: linear-gradient(135deg, #FFF9F5 0%, #FFFFFF 100%);
    border: 3px solid rgba(255, 159, 67, 0.25);
}

.result-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.result-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #1a1a1a;
}

.result-message {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 28px;
}

/* Result Stats */
.result-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

.stat-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    color: #999;
}

.stat-value.cohort-color {
    background: linear-gradient(135deg, #FF4384 0%, #FF6B9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value.community-color {
    background: linear-gradient(135deg, #4384FF 0%, #6B9DFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Result Recommendation Box */
.result-recommendation {
    text-align: left;
    padding: 32px;
    background: white;
    border-radius: 16px;
    margin: 28px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.result-recommendation h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.result-list {
    list-style: none;
    margin: 20px 0;
}

.result-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: #333;
    font-size: 17px;
    line-height: 1.6;
}

.result-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #FF4384 0%, #FF6B9D 100%);
    color: white;
    font-weight: 800;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-note {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.quiz-not-application {
    margin: 28px 0;
    padding: 20px 28px;
    background: linear-gradient(135deg, #FFF4E6 0%, #FFFEF8 100%);
    border: 3px solid #FFB74D;
    border-radius: 16px;
    text-align: center;
}

.quiz-not-application p {
    margin: 0;
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    font-weight: 500;
}

.quiz-not-application strong {
    color: #FF6F00;
    font-weight: 700;
}

.card-note {
    margin-top: 16px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Result CTAs */
.result-cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    align-items: center;
}

.result-cta {
    display: inline-block;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 280px;
}

.result-cta.primary {
    background: linear-gradient(135deg, #FF4384 0%, #FF6B9D 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 67, 132, 0.3);
}

.result-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 67, 132, 0.4);
}

.result-cta.secondary {
    background: white;
    color: #FF4384;
    border: 2px solid rgba(255, 67, 132, 0.3);
}

.result-cta.secondary:hover {
    background: #FFF5F8;
    border-color: #FF4384;
}

/* Comparison Grid for Hybrid Results */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

.comparison-card {
    text-align: left;
    padding: 32px 28px;
    border-radius: 20px;
    border: 3px solid;
    transition: all 0.3s ease;
}

.comparison-card.cohort-card {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFFFFF 100%);
    border-color: rgba(255, 67, 132, 0.25);
}

.comparison-card.cohort-card:hover {
    border-color: rgba(255, 67, 132, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 67, 132, 0.2);
}

.comparison-card.community-card {
    background: linear-gradient(135deg, #F0F8FF 0%, #FFFFFF 100%);
    border-color: rgba(67, 132, 255, 0.25);
}

.comparison-card.community-card:hover {
    border-color: rgba(67, 132, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(67, 132, 255, 0.2);
}

.comparison-card h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.card-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.comparison-list {
    list-style: none;
    margin: 20px 0;
}

.comparison-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.comparison-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #FF4384;
    font-weight: 800;
    font-size: 20px;
}

.comparison-card.community-card .comparison-list li::before {
    color: #4384FF;
}

.comparison-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.comparison-btn.cohort-btn {
    background: linear-gradient(135deg, #FF4384 0%, #FF6B9D 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 67, 132, 0.3);
}

.comparison-btn.cohort-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 67, 132, 0.4);
}

.comparison-btn.community-btn {
    background: linear-gradient(135deg, #4384FF 0%, #6B9DFF 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(67, 132, 255, 0.3);
}

.comparison-btn.community-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(67, 132, 255, 0.4);
}

.restart-quiz {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: white;
    color: #FF4384;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255, 67, 132, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.restart-quiz:hover {
    background: #FFF5F8;
    border-color: #FF4384;
    transform: translateY(-2px);
}

.restart-quiz i {
    font-size: 14px;
}

/* Responsive Quiz Results */
@media (max-width: 768px) {
    .result-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .result-cta {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .results-content {
        padding: 32px 24px;
    }

    .result-icon {
        font-size: 56px;
    }

    .result-title {
        font-size: 28px;
    }

    .stat-value {
        font-size: 30px;
    }

    .result-recommendation {
        padding: 24px 20px;
    }

    .comparison-card {
        padding: 24px 20px;
    }
}

/* Final CTA - Powerful Close */
.final-cta {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, #FFF0F5 0%, #FFF5F8 40%, #FFFBFC 70%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.12) 0%, rgba(255, 107, 157, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 22s ease-in-out infinite;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 32px;
    line-height: 1.35;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.8px;
}

.final-cta h2::after {
    display: none;
}

.final-cta p {
    font-size: 20px;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.8;
}

.cta-emphasis {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF0844 0%, #FF4384 50%, #FF6B9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 48px 0;
    letter-spacing: -0.3px;
}

.application-timing-final {
    margin-top: 64px;
}

.application-timing-final p {
    font-size: 19px;
    color: #555;
    margin-bottom: 48px;
}

/* Footer - Soft & Professional */
.disclaimer-footer {
    padding: 80px 0 56px;
    background: linear-gradient(180deg, #FAFAFA 0%, #F5F5F5 100%);
    border-top: 3px solid rgba(255, 67, 132, 0.15);
    text-align: center;
}

.disclaimer-footer p {
    font-size: 15px;
    color: #666;
    line-height: 1.85;
    margin-bottom: 18px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.back-link {
    margin-top: 48px;
}

.back-link a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #FF4384;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    padding: 14px 32px;
    border: 3px solid rgba(255, 67, 132, 0.2);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.back-link a:hover {
    background: linear-gradient(135deg, #FF4384 0%, #FF6B9D 100%);
    color: white;
    border-color: #FF4384;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 67, 132, 0.3);
}

/* Responsive - Mobile Perfect */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero .subhead {
        font-size: 20px;
    }

    .hero .supporting {
        font-size: 18px;
    }

    .content-section {
        padding: 100px 0;
    }

    .content-section h2 {
        font-size: 36px;
    }

    .assessment-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .countdown-display {
        gap: 14px;
    }

    .time-unit {
        min-width: 85px;
        padding: 20px 22px;
    }

    .time-value {
        font-size: 36px;
    }

    .final-cta h2 {
        font-size: 36px;
    }

    .feature {
        padding: 36px 32px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 80px 0 64px;
    }

    .hero h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .application-timing {
        padding: 40px 28px;
    }

    .apply-btn {
        padding: 18px 44px;
        font-size: 18px;
    }

    .apply-btn-large {
        padding: 20px 52px;
        font-size: 19px;
    }

    .countdown-display {
        gap: 10px;
    }

    .time-unit {
        min-width: 72px;
        padding: 16px 16px;
    }

    .time-value {
        font-size: 30px;
    }

    .time-label {
        font-size: 11px;
    }

    .content-section {
        padding: 80px 0;
    }

    .content-section h2 {
        font-size: 30px;
    }

    .feature h3 {
        font-size: 22px;
    }

    .outcomes-list,
    .feature {
        padding: 32px 28px;
    }

    .final-cta h2 {
        font-size: 30px;
    }
}