/* ===== Result Page Styles - Dark Theme ===== */

/* Override section padding for result */
#result {
    padding-top: 80px;
}

.result-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===== Grade Display ===== */
.result-grade {
    text-align: center;
    margin-bottom: 40px;
}

.grade-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.5s ease;
}

.grade-a {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.grade-b {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.grade-c {
    background: linear-gradient(135deg, var(--primary-dark), #0041BA);
}

.grade-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.grade-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Grade Badge */
.grade-badge {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.grade-badge.grade-a {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.grade-badge.grade-b {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.grade-badge.grade-c {
    background: linear-gradient(135deg, var(--primary-dark), #0041BA);
    color: var(--white);
}

.grade-icon-large {
    font-size: 5rem;
    margin-bottom: 20px;
}

/* ===== Result Message ===== */
.result-message {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.result-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-weight: 400;
}

.result-message p:last-child {
    margin-bottom: 0;
}

.result-message strong {
    font-weight: 700;
    color: var(--accent-color);
}

/* ===== Result Summary Section ===== */
.result-summary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.result-summary h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.result-summary h3 i {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 10px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.summary-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.summary-item-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.summary-item-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* ===== Purpose Analysis Section ===== */
.result-purpose-analysis {
    margin-bottom: 40px;
}

.result-purpose-analysis h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.result-purpose-analysis h3 i {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 10px;
}

.purpose-analysis-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    line-height: 1.8;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.purpose-analysis-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.purpose-analysis-content p:last-child {
    margin-bottom: 0;
}

.purpose-analysis-content strong {
    font-weight: 700;
    color: var(--accent-color);
}

/* ===== Recommendations Section ===== */
.result-recommendations {
    margin-bottom: 40px;
}

.result-recommendations h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.result-recommendations h3 i {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 10px;
}

.recommendation-list {
    display: grid;
    gap: 15px;
}

.recommendation-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: start;
    gap: 15px;
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 105, 214, 0.3);
    transform: translateX(5px);
}

.recommendation-item i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 2px;
}

.recommendation-item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.recommendation-item p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.6;
}

/* Industry Intro */
.industry-intro {
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--accent-color);
    border-radius: 12px;
}

.industry-intro strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* ===== Certification Lists ===== */
/* Certification List Numbered */
.certification-list-numbered {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.certification-item-detailed {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.certification-item-detailed:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 105, 214, 0.3);
}

.certification-item-detailed.checked {
    border-color: var(--accent-color);
    background: rgba(4, 237, 245, 0.08);
    box-shadow: 0 8px 24px rgba(4, 237, 245, 0.2);
}

/* Checkbox Styles */
.cert-checkbox-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    width: 28px;
    height: 28px;
}

.cert-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.cert-checkbox-custom {
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-checkbox-label:hover .cert-checkbox-custom {
    border-color: var(--primary-color);
    background: rgba(0, 105, 214, 0.1);
    box-shadow: 0 0 15px rgba(0, 105, 214, 0.3);
}

.cert-checkbox:checked + .cert-checkbox-custom {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(4, 237, 245, 0.6), 0 4px 15px rgba(4, 237, 245, 0.4);
}

.cert-checkbox:checked + .cert-checkbox-custom::after {
    content: '✓';
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cert-content {
    flex: 1;
}

.cert-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cert-header i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cert-header strong {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.cert-importance {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.importance-label {
    font-weight: 700;
    color: var(--accent-color);
}

/* Certification Closing */
.certification-closing {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.certification-closing strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Legacy Certification List (keep for compatibility) */
.certification-list {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.certification-item.highlight {
    border-color: var(--accent-color);
    background: rgba(4, 237, 245, 0.08);
}

.certification-item:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.certification-item i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.certification-item strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.certification-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Analysis Grid ===== */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.analysis-section {
    padding: 30px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.analysis-section.strengths {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
}

.analysis-section.improvements {
    background: rgba(0, 105, 214, 0.1);
    border-color: rgba(0, 105, 214, 0.4);
    box-shadow: 0 8px 32px rgba(0, 105, 214, 0.1);
}

.analysis-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
}

.analysis-section h4 i {
    margin-right: 10px;
}

.analysis-section.strengths h4 i {
    color: #10b981;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

.analysis-section.improvements h4 i {
    color: var(--accent-color);
    filter: drop-shadow(0 0 8px rgba(4, 237, 245, 0.6));
}

.analysis-section ul {
    list-style: none;
    padding: 0;
}

.analysis-section ul li {
    padding: 10px 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.analysis-section ul li i {
    margin-right: 12px;
    font-size: 1rem;
}

.analysis-section.strengths ul li i {
    color: #10b981;
}

.analysis-section.improvements ul li i {
    color: var(--accent-color);
}

/* ===== Next Steps ===== */
.result-next-steps {
    margin-bottom: 40px;
}

.result-next-steps h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.result-next-steps h3 i {
    color: var(--accent-color);
    margin-right: 10px;
}

.next-step-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.next-step-card {
    background: linear-gradient(135deg, rgba(0, 105, 214, 0.05), rgba(4, 237, 245, 0.05));
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(0, 105, 214, 0.1);
    transition: all 0.3s ease;
}

.next-step-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 105, 214, 0.2);
}

.next-step-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.next-step-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.next-step-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
}

/* ===== Download Section ===== */
.result-download {
    margin-bottom: 40px;
}

.download-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(4, 237, 245, 0.2);
    position: relative;
    overflow: hidden;
}

/* Decorative glow effect */
.download-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(4, 237, 245, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.download-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.download-section h3 i {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 10px;
}

.download-description {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.download-benefits {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.download-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.download-list li {
    padding: 15px 25px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.download-list li:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.download-list li i {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 12px;
    font-size: 1.2rem;
}

.download-cta {
    text-align: center;
    padding-top: 10px;
    position: relative;
    z-index: 1;
}

/* ===== CTA Section ===== */
.result-cta {
    margin-bottom: 50px;
}

.cta-section {
    text-align: center;
}

.cta-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.cta-section h3 i {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 10px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-primary,
.cta-secondary {
    width: 100%;
    justify-content: center;
}

/* ===== Security Seminar Ad ===== */
.result-security-seminar {
    margin-bottom: 40px;
    display: none; /* Hide from result page, show in popup instead */
}

/* ===== Seminar Popup ===== */
.seminar-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.seminar-popup-container {
    position: relative;
    background: linear-gradient(135deg, rgba(31, 29, 32, 0.98), rgba(20, 18, 22, 0.98));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 105, 214, 0.5);
    border-radius: 20px;
    padding: 0;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(0, 105, 214, 0.3),
        0 0 120px rgba(4, 237, 245, 0.15);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), popupGlow 2s ease-in-out infinite;
    position: relative;
}

@keyframes popupGlow {
    0%, 100% {
        box-shadow: 
            0 25px 80px rgba(0, 0, 0, 0.7),
            0 0 0 1px rgba(255, 255, 255, 0.1),
            0 0 60px rgba(0, 105, 214, 0.3),
            0 0 120px rgba(4, 237, 245, 0.15);
    }
    50% {
        box-shadow: 
            0 25px 80px rgba(0, 0, 0, 0.7),
            0 0 0 1px rgba(255, 255, 255, 0.15),
            0 0 80px rgba(0, 105, 214, 0.5),
            0 0 150px rgba(4, 237, 245, 0.25);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.seminar-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.seminar-popup-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(4, 237, 245, 0.4);
}

.seminar-popup-close:active {
    transform: rotate(90deg) scale(1.05);
}

.seminar-popup-content {
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* 팝업 헤더 */
.seminar-popup-header {
    padding: 30px 40px 20px;
    background: linear-gradient(180deg, rgba(0, 105, 214, 0.1) 0%, transparent 100%);
}

.seminar-popup-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    text-align: left;
    text-shadow: 0 2px 10px rgba(0, 105, 214, 0.5);
    background: linear-gradient(135deg, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seminar-popup-emoji {
    margin-right: 8px;
    display: inline-block;
    font-size: 1.5rem;
    background: none;
    color: var(--white);
    filter: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: var(--white);
}

/* 팝업 본문 */
.seminar-popup-body {
    padding: 30px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.seminar-popup-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.seminar-popup-image .seminar-title-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* 팝업 정보 섹션 */
.seminar-popup-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 105, 214, 0.15), rgba(4, 237, 245, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(0, 105, 214, 0.3);
    box-shadow: 0 4px 20px rgba(0, 105, 214, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.seminar-popup-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.6;
}

.seminar-popup-info-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* 팝업 CTA */
.seminar-popup-cta {
    text-align: center;
    padding-top: 10px;
}

.seminar-popup-cta .btn-primary {
    width: 100%;
    max-width: 400px;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 105, 214, 0.4), 0 0 20px rgba(4, 237, 245, 0.3);
    transition: all 0.3s ease;
}

.seminar-popup-cta .btn-primary:hover {
    box-shadow: 0 12px 32px rgba(0, 105, 214, 0.5), 0 0 30px rgba(4, 237, 245, 0.4);
    transform: translateY(-2px);
}

.security-seminar-card {
    background: linear-gradient(135deg, rgba(0, 105, 214, 0.1), rgba(4, 237, 245, 0.1));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 105, 214, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 105, 214, 0.2), 0 0 40px rgba(4, 237, 245, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.security-seminar-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(4, 237, 245, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.security-seminar-card:hover {
    border-color: rgba(0, 105, 214, 0.5);
    box-shadow: 0 12px 40px rgba(0, 105, 214, 0.3), 0 0 60px rgba(4, 237, 245, 0.2);
    transform: translateY(-2px);
}

.security-seminar-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.security-seminar-title-section {
    width: 100%;
}

.security-seminar-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-align: left;
}

.security-seminar-title-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.seminar-title-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.security-seminar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 105, 214, 0.4);
    flex-shrink: 0;
}

.security-seminar-title-group {
    flex: 1;
}

.security-seminar-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.security-seminar-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.security-seminar-content {
    position: relative;
    z-index: 1;
}

.security-seminar-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 400;
}

/* ===== Security Seminar Info Compact (간소화된 정보) ===== */
.security-seminar-info-compact {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.security-seminar-info-compact-item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.6;
}

.security-seminar-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.security-seminar-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.security-seminar-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.security-seminar-feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.security-seminar-feature span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.security-seminar-cta {
    text-align: center;
    margin-top: 20px;
}

.security-seminar-btn {
    width: 100%;
    max-width: 400px;
    justify-content: center;
}

/* ===== Result Footer ===== */
.result-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.result-footer p {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.result-footer p i {
    color: var(--accent-color);
    margin-right: 8px;
}

.result-footer strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* ===== Responsive Design for Result ===== */
@media (max-width: 768px) {
    .result-content {
        padding: 30px 20px;
    }

    .grade-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .grade-title {
        font-size: 1.5rem;
    }

    .next-step-cards {
        grid-template-columns: 1fr;
    }

    .analysis-grid {
        grid-template-columns: 1fr;
    }

    .result-cta .btn-primary {
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    .security-seminar-card {
        padding: 25px 20px;
    }

    .security-seminar-section-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .security-seminar-title-image {
        margin-bottom: 15px;
    }

    .security-seminar-info-compact-item {
        font-size: 0.9rem;
    }

    .security-seminar-btn {
        width: 100%;
    }

    /* Seminar Popup Responsive */
    .seminar-popup-container {
        max-width: 95%;
        padding: 0;
    }

    .seminar-popup-header {
        padding: 25px 20px 15px;
    }

    .seminar-popup-title {
        font-size: 1.3rem;
    }

    .seminar-popup-body {
        padding: 20px;
        gap: 20px;
    }

    .seminar-popup-info {
        padding: 15px;
        gap: 10px;
    }

    .seminar-popup-info-item {
        font-size: 0.9rem;
    }

    .seminar-popup-cta .btn-primary {
        width: 100%;
        max-width: 100%;
    }

    .seminar-popup-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

