/* 
   PS:LAB Color Theme (Modern, Data-Driven, Tech Startup)
*/
:root {
    /* Palette: Monochrome + Trust Blue */
    --color-primary: #111111; /* Deep Black for strong contrast */
    --color-primary-light: #333333;
    --color-accent: #2563eb; /* Trustworthy Tech Blue */
    --color-accent-hover: #1d4ed8;
    
    --color-bg-main: #f8fafc; /* Very light slate/gray for modern feel */
    --color-bg-light: #ffffff;
    --color-bg-dark: #0f172a; /* Slate 900 */
    
    --color-text-main: #1e293b; /* Slate 800 */
    --color-text-muted: #64748b; /* Slate 500 */
    --color-text-light: #f1f5f9; /* Slate 100 */
    
    /* Typography */
    --font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: 'Inter', var(--font-sans); /* Inter for English logo/headings */
    
    /* Variables */
    --transition-standard: all 0.2s ease-in-out;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
}

/* Pretendard Font Import */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");
/* Inter for English accents */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

/* Reset & Basic Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-main);
    background-color: var(--color-bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: -0.02em; /* Tighter letter spacing for modern look */
    word-break: keep-all;
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-primary);
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
    word-break: keep-all;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    font-weight: 400;
    line-height: 1.6;
    word-break: keep-all;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.bg-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.bg-dark h2 {
    color: var(--color-text-light);
}

.bg-dark .subtitle {
    color: var(--color-text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 50px; /* Pill shape for startup vibe */
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition-standard);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition-standard);
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-auth {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: color 0.2s;
}

.nav-auth:hover {
    color: var(--color-primary);
}

.nav-mypage {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 6rem;
    background-color: var(--color-bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-main);
    min-height: 100vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--color-accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.8rem); /* Responsive font size */
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.hero p.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
    word-break: keep-all;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.cta-subtext {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
}

.cta-secondary {
    display: flex;
    align-items: center;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Announcement Section */
.announcement-section {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.letter-box {
    background-color: var(--color-bg-light);
    padding: 4rem 5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
}

.letter-box h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.letter-box p {
    font-size: 1rem;
    color: var(--color-text-main);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.letter-box h3 {
    font-size: 1.15rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
}

.schedule-list li {
    padding-left: 1rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.schedule-list li::before {
    content: '-';
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* About Section & Mentors Grid */
.mentors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.mentor-card {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
}

.mentor-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.mentor-logo {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0.9;
}

.mentor-role {
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    padding-right: 50px;
}

.mentor-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.mentor-name .mentor-major {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: 0.2rem;
}

.mentor-quote {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
    font-weight: 600;
}

.mentor-details {
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.mentor-details p {
    margin-bottom: 0.3rem;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.process-card {
    background-color: var(--color-bg-light);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid #e2e8f0;
    transition: var(--transition-standard);
}

.process-card:hover {
    border-color: var(--color-accent);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.process-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    word-break: keep-all;
}

/* Contact Links */
.contact-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    background-color: #1e293b;
    border: 1px solid #334155;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition-standard);
}

.contact-card:hover {
    background-color: #334155;
    transform: translateY(-3px);
}

.contact-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: keep-all;
    padding: 0 10%;
}

.contact-card .btn-text {
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: var(--color-bg-dark);
    color: #94a3b8;
    padding: 3rem 0;
    border-top: 1px solid #1e293b;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-text-light);
}

.footer-logo span {
    color: var(--color-accent);
}

.footer-bottom {
    margin-top: 2rem;
    font-size: 0.8rem;
    text-align: center;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* 1. Songpa GIS Hero */
.songpa-hero {
    background-color: #050505 !important;
    background-image: none !important;
    position: relative;
    color: #f8fafc;
}

.songpa-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 20% 40%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
    z-index: 0;
    pointer-events: none;
}

.text-gradient-cyan {
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blur-fade-in {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(15px);
    animation: blurFadeInAnim 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes blurFadeInAnim {
    to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

/* 4. School Card Hover */
.school-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.school-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.3);
}

/* 5. B2B Logo Grayscale */
.b2b-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    cursor: pointer;
    transition: all 0.3s ease;
}

.b2b-logo-wrapper img {
    height: 40px;
    filter: grayscale(100%) opacity(50%);
    transition: all 0.3s ease;
}

.b2b-logo-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--color-accent);
}

.b2b-logo-wrapper:hover img {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.05);
}

.b2b-text-placeholder {
    font-size: 1.2rem;
    font-weight: 800;
    color: #94a3b8;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.b2b-logo-wrapper:hover .b2b-text-placeholder {
    color: var(--color-accent);
}


/* Extra Mobile Optimizations */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding-top: 6.5rem; padding-bottom: 4rem; min-height: auto; }
    .hero h1 { margin-bottom: 1rem; }
    .section { padding: 4rem 0; }
    .process-grid, .contact-links { grid-template-columns: 1fr; gap: 1rem; }
    .letter-box { padding: 2rem 1.5rem; }
    .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
    .mentors-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .btn { width: 100%; text-align: center; padding: 0.8rem 1.5rem; }
    .cta-group { flex-direction: column; width: 100%; gap: 0.8rem; }
    .logo { font-size: 1.3rem; }
    .pain-point-section h2 { font-size: 1.8rem !important; }
    .pricing-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* FAQ Section */
.faq-section {
    padding-top: 2rem;
}
.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    text-align: left;
}
.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}
.faq-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Scroll To Top Premium */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.scroll-to-top:hover {
    background: rgba(15, 23, 42, 0.95);
    transform: translateY(-4px);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- Premium Text Animations for Hero & Headers --- */
.text-gradient {
    /* 기존 스타일과 호환을 위해 투명 배경 클립핑 */
    background: linear-gradient(to right, var(--color-primary), var(--color-accent), var(--color-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: textShine 4s linear infinite;
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

/* --- Dark Theme Element Overrides (네이비 섹션 내 카드 등) --- */
.bg-dark .process-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}
.bg-dark .process-card:hover {
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.05);
}
.bg-dark .process-card h3 {
    color: #ffffff;
}
.bg-dark .process-card p {
    color: #94a3b8;
}
.bg-dark .section-header h2 {
    color: #ffffff;
}
/* --- Conversion Form Styles --- */
#contact {
    background-color: var(--color-bg-light);
}
#contact .section-header h2 {
    color: var(--color-primary);
}
#contact .section-header .subtitle {
    color: var(--color-text-muted);
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    border: 1px solid rgba(0,0,0,0.05);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 800;
    color: var(--color-primary);
    font-size: 0.9rem;
    letter-spacing: -0.5px;
}
.form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: #f8fafc;
    color: var(--color-primary);
}
.form-control::placeholder {
    color: #94a3b8;
    font-weight: 400;
}
.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
    background: #ffffff;
}

/* --- Social Proof (Review) Styles --- */
.review-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(37, 99, 235, 0.1);
    text-align: left;
    position: relative;
}
.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(37, 99, 235, 0.1);
    font-family: Georgia, serif;
    font-weight: 900;
}
.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-primary);
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}
.review-author {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}
.review-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent);
}

/* --- Program Pricing Grid (Navy Background + White Cards VIP UI) --- */
#programs {
    background-color: var(--color-bg-dark); /* Navy Background */
}
#programs .section-header h2 {
    color: #ffffff;
}
#programs .section-header .subtitle {
    color: #94a3b8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.premium {
    border: 2px solid var(--color-accent);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(37,99,235,0.08); /* Soft blue shadow */
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 2rem;
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.badge-standard {
    background: #94a3b8;
    color: #ffffff;
}

.badge-premium {
    background: var(--color-accent);
    color: #ffffff;
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.pricing-header .desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.pricing-header .original-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.pricing-header .price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
}
.pricing-header .price span {
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: 800;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-features li strong {
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.pricing-features.standard li::before, .pricing-features.premium li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-accent);
    font-weight: 900;
    font-size: 1.1rem;
}

.scholarship-box {
    background: rgba(37, 99, 235, 0.05); /* Very light blue background */
    border: 1px solid rgba(37, 99, 235, 0.15); /* Light blue border */
    border-radius: 8px;
    padding: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}
.scholarship-box h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.scholarship-box p {
    color: #cbd5e1;
    font-size: 0.85rem;
    line-height: 1.5;
}

.scholarship-box h4 {
    color: var(--color-accent);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.scholarship-box p {
    color: #475569;
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 600;
}

.btn-plan {
    width: 100%;
    padding: 1.2rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-standard {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: var(--color-primary);
}
.btn-standard:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

.btn-premium {
    background: var(--color-accent);
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}
.btn-premium:hover {
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.animate-pop-in {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    animation: popInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes popInUp {
    0% { opacity: 0; transform: scale(0.95) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* Target School Grid UI */
.school-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.school-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    text-align: center;
}

.school-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.08);
}

.school-logo-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(37,99,235,0.02) 100%);
    border: 2px solid rgba(37,99,235,0.15);
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: -1px;
}

.school-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.school-feature {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    word-break: keep-all;
}

.school-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--color-bg-main);
    color: var(--color-text-muted);
    padding: 0.3em 0.6em;
    border-radius: 50px;
    letter-spacing: 0.5px;
}


/* FAQ Accordion */
.faq-item {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    margin-bottom: 15px;
    text-align: left;
}
.faq-item:hover {
    border-color: var(--color-accent);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--color-primary);
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    transition: transform 0.3s ease;
}
.faq-item.faq-open .faq-icon {
    transform: rotate(45deg);
    color: var(--color-accent);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}
.faq-item.faq-open .faq-answer {
    max-height: 500px;
    margin-top: 15px;
    opacity: 1;
}
.faq-answer p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
}
