/* SCOPED TO .curriculum-section-premium */
.curriculum-section-premium {
    --brand-orange: #ff6a00;
    --brand-orange-light: #ffb347;
    --deep-dark: #0f172a;
    --text-slate: #475569;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.05);

    padding: clamp(32px, 7vw, 90px) 0;
    background: radial-gradient(circle at top right, #fff5f0 0%, #ffffff 100%);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.curr-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER ENHANCEMENTS */
.curriculum-header {
    text-align: center;
    margin-bottom: 70px;
}

.curriculum-badge-v2 {
    background: linear-gradient(90deg, rgba(255,106,0,0.1), rgba(255,179,71,0.1));
    color: var(--brand-orange);
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255,106,0,0.2);
}

.display-h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--deep-dark);
    font-weight: 800;
    margin: 20px 0;
    letter-spacing: -1.5px;
}

.display-h2, .subtitle-p { animation: fadeUp 520ms cubic-bezier(0.2,0.9,0.2,1) both; }
.hp-card-top, .hp-card-bottom, .hp-glow { animation: floatSlow 12s ease-in-out infinite; }

.text-gradient {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle-p {
    color: var(--text-slate);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.urgency-tag {
    display: block;
    font-size: 0.95rem;
    color: #ef4444;
    font-weight: 600;
    margin-top: 10px;
}

/* GRID & CARDS */
.curriculum-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.curriculum-card-v2 {
    position: relative;
    background: white;
    border-radius: 28px;
    padding: 2px; /* For the gradient border effect */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eef2f6;
}

.card-inner {
    background: white;
    padding: 40px;
    border-radius: 26px;
    height: 100%;
}

.curriculum-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

/* FEATURED CARD GLOW */
.featured-card {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
}

.premium-tag {
    position: absolute;
    top: 20px;
    right: 25px;
    background: white;
    color: var(--brand-orange);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ICONS */
.curriculum-icon-v2 {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-orange);
    margin-bottom: 25px;
    transition: 0.3s ease;
}

.curriculum-card-v2:hover .curriculum-icon-v2 {
    background: var(--brand-orange);
    color: white;
    transform: rotateY(10deg);
}

.curr-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.curr-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-slate);
    font-weight: 500;
    font-size: 0.95rem;
}

.curr-list li i {
    color: #10b981; /* Success Green */
    font-size: 1.1rem;
}

/* CTA SECTION */
.curriculum-cta-v2 {
    margin-top: 80px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--deep-dark);
    font-size: 0.9rem;
}

.cta-box-premium {
    background: white;
    padding: 50px;
    border-radius: 40px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    border: 1px solid #f1f5f9;
}

.info-pill-wrapper {
    display: inline-flex;
    align-items: center;
    background: #f8fafc;
    padding: 10px 30px;
    border-radius: 100px;
    margin-bottom: 40px;
}

.info-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--deep-dark);
}

.info-pill i { color: var(--brand-orange); }

.info-pill-divider {
    width: 1px;
    height: 20px;
    background: #e2e8f0;
    margin: 0 25px;
}

.btn-main-premium {
    position: relative;
    overflow: hidden;
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-orange), #ff4d00);
    color: white;
    padding: 22px 50px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 15px 30px rgba(255, 106, 0, 0.3);
}

.btn-main-premium:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.4);
}

.btn-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.limited-notice {
    margin-top: 20px;
    font-weight: 600;
    color: #64748b;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .info-pill-wrapper { flex-direction: column; border-radius: 20px; gap: 10px; }
    .info-pill-divider { display: none; }
    .btn-main-premium { width: 100%; padding: 20px; }
    .display-h2 { font-size: 2rem; }
}

@media (max-width: 576px) {
    .curriculum-section-premium { padding: 40px 0; }
    .curr-container { padding: 0 12px; }
    .curriculum-grid-v2 { gap: 16px; grid-template-columns: 1fr; }
    .card-inner { padding: 20px; }
    .btn-main-premium { padding: 14px 20px; font-size: 1rem; }
    .trust-indicators { flex-direction: column; gap: 12px; }
}
