/* ═══════════════════════════════════════════
   WORKSHOP PAGE — workshop.css
   Extends main.css design tokens
   ═══════════════════════════════════════════ */

/* ── Hero banner ── */
.workshop-hero {
    position: relative;
    padding: 10rem 2rem 5rem;
    text-align: center;
    overflow: hidden;
}

.workshop-hero__grid {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 0.8px, transparent 0.8px);
    background-size: 14px 14px;
    -webkit-mask-image: radial-gradient(circle at 50% 40%, #000, rgba(0, 0, 0, 0.15) 60%, transparent 85%);
    mask-image: radial-gradient(circle at 50% 40%, #000, rgba(0, 0, 0, 0.15) 60%, transparent 85%);
}

.workshop-hero__glow {
    pointer-events: none;
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, hsla(217, 91%, 70%, 0.12) 0%, hsla(270, 60%, 60%, 0.06) 40%, transparent 70%);
}

.workshop-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    backdrop-filter: blur(6px);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.workshop-hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e80;
    animation: pulse-dot 2s ease-in-out infinite;
}

.workshop-hero__title {
    position: relative;
    z-index: 1;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-bright);
    margin-bottom: 1.25rem;
}

.workshop-hero__title span {
    background: linear-gradient(135deg, var(--blue-400), var(--purple-light), var(--indigo-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workshop-hero__desc {
    position: relative;
    z-index: 1;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.workshop-hero__meta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.workshop-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.workshop-meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--blue-400);
    flex-shrink: 0;
}

.workshop-hero__cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-500), var(--purple));
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.workshop-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
    color: #fff;
}

/* ── Day Cards Section ── */
.workshop-days {
    position: relative;
    padding: 4rem 2rem 6rem;
    max-width: 1440px;
    margin: 0 auto;
}

.workshop-days__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.workshop-days__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-bright);
    margin-bottom: 0.75rem;
}

.workshop-days__subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Cards grid (pricing-card inspired) ── */
.workshop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .workshop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .workshop-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── Day Card ── */
.day-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(24px);
}

.day-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s;
}

.day-card:hover {
    border-color: rgba(96, 165, 250, 0.25);
    transform: translateY(-4px);
}

/* featured (highlighted day) */
.day-card--featured {
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.12), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.day-card--featured:hover {
    border-color: rgba(96, 165, 250, 0.55);
    transform: translateY(-6px);
}

/* ── Card header ── */
.day-card__header {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--border-glass);
    padding: 1.5rem 1.25rem;
    overflow: hidden;
}

.day-card--featured .day-card__header {
    background: rgba(96, 165, 250, 0.05);
    border-bottom-color: rgba(96, 165, 250, 0.15);
}

.day-card__glass {
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 120px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 40%, transparent 100%);
}

.day-card__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.day-card__number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.day-card__number svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.day-card__pill {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: var(--blue-300);
    background: rgba(96, 165, 250, 0.1);
}

.day-card__title {
    position: relative;
    z-index: 1;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin-bottom: 0.4rem;
}

.day-card__date {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── Card body ── */
.day-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.day-card__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.day-card__topics {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.day-card__topics li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.day-card__topics .check-icon {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 1px;
}

.day-card--featured .day-card__topics .check-icon {
    color: var(--blue-400);
}

/* ── Outcome tag ── */
.day-card__outcome {
    margin-top: auto;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    background: rgba(96, 165, 250, 0.06);
    border: 1px solid rgba(96, 165, 250, 0.12);
    font-size: 0.78rem;
    color: var(--blue-300);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.day-card__outcome svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── What You Get Section ── */
.workshop-features {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.workshop-features__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-bright);
    margin-bottom: 3rem;
}

.workshop-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    text-align: left;
}

.feature-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    backdrop-filter: blur(14px);
    transition: border-color 0.3s, transform 0.2s;
}

.feature-item:hover {
    border-color: rgba(96, 165, 250, 0.25);
    transform: translateY(-2px);
}

.feature-item__icon {
    width: 40px;
    height: 40px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-400);
    margin-bottom: 1rem;
}

.feature-item__icon svg {
    width: 20px;
    height: 20px;
}

.feature-item__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.4rem;
}

.feature-item__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── CTA Bottom ── */
.workshop-cta {
    padding: 4rem 2rem 6rem;
    text-align: center;
}

.workshop-cta__box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
    padding: 3rem 2rem;
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

.workshop-cta__box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        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: 80px 80px;
    -webkit-mask-image: linear-gradient(to bottom right, #000, transparent, transparent);
    mask-image: linear-gradient(to bottom right, #000, transparent, transparent);
    pointer-events: none;
}

.workshop-cta__title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.workshop-cta__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.workshop-cta__price {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.workshop-cta__price-main {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--blue-400), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workshop-cta__price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.workshop-cta__price-original {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 0.75rem;
}

.workshop-cta__btn {
    border: 0;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-500), var(--purple));
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.workshop-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.45);
    color: #fff;
}

/* ── Footer ── */
.workshop-footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-glass);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.workshop-footer a {
    color: var(--blue-400);
    text-decoration: none;
}

/* ═══════════════════════════════════════════
   LIGHT MODE OVERRIDES
   ═══════════════════════════════════════════ */
body.light .workshop-hero__grid {
    background-image: radial-gradient(rgba(0, 0, 0, 0.06) 0.8px, transparent 0.8px);
}

body.light .workshop-hero__badge {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #64748b;
}

body.light .workshop-hero__title {
    color: #0f172a;
}

body.light .workshop-hero__desc {
    color: #64748b;
}

body.light .workshop-meta-item {
    color: #475569;
}

body.light .workshop-days__title {
    color: #0f172a;
}

body.light .workshop-days__subtitle {
    color: #64748b;
}

body.light .day-card {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light .day-card:hover {
    border-color: rgba(59, 130, 246, 0.25);
}

body.light .day-card--featured {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.08), 0 4px 24px rgba(0, 0, 0, 0.06);
}

body.light .day-card__header {
    background: rgba(0, 0, 0, 0.02);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

body.light .day-card--featured .day-card__header {
    background: rgba(59, 130, 246, 0.04);
}

body.light .day-card__glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.15) 40%, transparent 100%);
}

body.light .day-card__number {
    color: #475569;
}

body.light .day-card__title {
    color: #0f172a;
}

body.light .day-card__date {
    color: #64748b;
}

body.light .day-card__desc {
    color: #64748b;
}

body.light .day-card__topics li {
    color: #475569;
}

body.light .day-card__topics .check-icon {
    color: #94a3b8;
}

body.light .day-card--featured .day-card__topics .check-icon {
    color: var(--blue-500);
}

body.light .day-card__outcome {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.12);
    color: var(--blue-500);
}

body.light .feature-item {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light .feature-item:hover {
    border-color: rgba(59, 130, 246, 0.25);
}

body.light .feature-item__title {
    color: #0f172a;
}

body.light .feature-item__desc {
    color: #64748b;
}

body.light .workshop-features__title {
    color: #0f172a;
}

body.light .workshop-cta__box {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light .workshop-cta__box::before {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

body.light .workshop-cta__title {
    color: #0f172a;
}

body.light .workshop-cta__desc {
    color: #64748b;
}

body.light .workshop-cta__price-period {
    color: #64748b;
}

body.light .workshop-cta__price-original {
    color: #94a3b8;
}

body.light .workshop-footer {
    border-top-color: rgba(0, 0, 0, 0.08);
    color: #64748b;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .workshop-hero {
        padding: 8rem 1.25rem 3rem;
    }

    .workshop-days {
        padding: 3rem 1rem 4rem;
    }

    .workshop-features {
        padding: 3rem 1rem;
    }

    .workshop-cta {
        padding: 2rem 1rem 4rem;
    }

    .workshop-cta__box {
        padding: 2rem 1.25rem;
    }
}

/* ═══════════════════════════════════════════
   DAY CARD ACTION BUTTONS
   ═══════════════════════════════════════════ */
.day-card__actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-glass);
}

.day-card__details-btn {
    flex: 1;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-400);
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
}

.day-card__details-btn:hover {
    color: var(--blue-300);
}

.day-card__share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.day-card__share-btn:hover {
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.3);
    color: var(--blue-300);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   SHARE OVERLAY
   ═══════════════════════════════════════════ */
.share-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.share-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.share-card {
    position: relative;
    width: calc(100% - 2rem);
    max-width: 400px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    transform: translateY(20px) scale(0.97);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s ease;
}

.share-overlay.is-active .share-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.share-card__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.share-card__close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-bright);
}

/* ── Share card preview ── */
.share-card__preview {
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.08) 0%, rgba(168, 85, 247, 0.06) 100%);
    border-bottom: 1px solid var(--border-glass);
}

.share-card__badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill);
    background: rgba(96, 165, 250, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.25);
    color: var(--blue-300);
    margin-bottom: 0.75rem;
}

.share-card__day {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.share-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-bright);
    line-height: 1.25;
    margin-bottom: 0.35rem;
}

.share-card__date {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.share-card__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.share-card__outcome {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--blue-300);
    padding: 0.5rem 0.75rem;
    background: rgba(96, 165, 250, 0.06);
    border: 1px solid rgba(96, 165, 250, 0.12);
    border-radius: 8px;
}

/* ── Share action buttons ── */
.share-card__actions {
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 0.6rem;
}

.share-action-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 0.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.share-action-btn:hover {
    transform: translateY(-1px);
}

.share-action-btn--copy:hover {
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.3);
    color: var(--blue-300);
}

.share-action-btn--whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.share-action-btn--twitter:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-bright);
}

/* ── Share light mode ── */
body.light .share-overlay {
    background: rgba(255, 255, 255, 0.5);
}

body.light .share-card {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light .share-card__preview {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(168, 85, 247, 0.04) 100%);
}

body.light .share-card__title {
    color: #0f172a;
}

body.light .share-card__close {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.04);
    color: #6b7280;
}

body.light .share-action-btn {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #475569;
}

/* ── Actions light mode ── */
body.light .day-card__details-btn {
    color: var(--blue-500);
}

body.light .day-card__details-btn:hover {
    color: #1d4ed8;
}

body.light .day-card__share-btn {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #64748b;
}

body.light .day-card__share-btn:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.25);
    color: var(--blue-500);
}


/* ═══════════════════════════════════════════
   ENROLLMENT MODAL
   ═══════════════════════════════════════════ */

.enroll-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.enroll-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.enroll-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

body.light .enroll-modal__backdrop {
    background: rgba(0, 0, 0, 0.5);
}

.enroll-modal__content {
    position: relative;
    width: 100%;
    max-width: 850px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-glass, rgba(13, 17, 32, 0.85));
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.08));
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    scrollbar-width: thin;
    scrollbar-color: var(--blue-400, #60a5fa) transparent;
}

.enroll-modal.is-active .enroll-modal__content {
    transform: scale(1) translateY(0);
}

.enroll-modal__content::-webkit-scrollbar {
    width: 4px;
}

.enroll-modal__content::-webkit-scrollbar-thumb {
    background: var(--blue-400, #60a5fa);
    border-radius: 4px;
}

body.light .enroll-modal__content {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Close Button */
.enroll-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted, #94a3b8);
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 2;
}

.enroll-modal__close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-bright, #f1f5f9);
    transform: scale(1.1);
}

body.light .enroll-modal__close {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #64748b;
}

body.light .enroll-modal__close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #0f172a;
}

/* Header */
.enroll-modal__header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.enroll-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.1));
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--blue-400, #60a5fa);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.enroll-modal__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-400, #60a5fa);
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.enroll-modal__title {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--text-bright, #f1f5f9);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

body.light .enroll-modal__title {
    color: #0f172a;
}

.enroll-modal__title .gradient-word {
    background: linear-gradient(135deg, var(--blue-400, #60a5fa), var(--purple-light, #c4b5fd));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enroll-modal__subtitle {
    font-size: 0.875rem;
    color: var(--text-muted, #94a3b8);
    line-height: 1.6;
    max-width: 360px;
    margin: 0 auto;
}

body.light .enroll-modal__subtitle {
    color: #64748b;
}

/* Form Fields */
.enroll-field {
    margin-bottom: 1.25rem;
    width: 50%;
    
}
@media (max-width:575px) {
    .enroll-field{
    width: 100%;}
}

.enroll-field--checkbox {
    margin-bottom: 1.5rem;
}

.enroll-field__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-body, #cbd5e1);
    margin-bottom: 0.5rem;
}

body.light .enroll-field__label {
    color: #374151;
}

.enroll-field__required {
    color: #ef4444;
}

.enroll-field__optional {
    color: var(--text-muted, #94a3b8);
    font-weight: 400;
    font-size: 0.75rem;
}

.enroll-field__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.enroll-field__icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted, #94a3b8);
    pointer-events: none;
    z-index: 1;
}

.enroll-field__input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border-radius: 12px;
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.1));
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-bright, #f1f5f9);
    font-size: 0.875rem;
    font-family: inherit;
    transition: all 0.25s ease;
    outline: none;
}

.enroll-field__input::placeholder {
    color: var(--text-muted, #94a3b8);
    opacity: 0.6;
}

.enroll-field__input:focus {
    border-color: var(--blue-400, #60a5fa);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15), 0 0 20px rgba(96, 165, 250, 0.1);
}

body.light .enroll-field__input {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #0f172a;
}

body.light .enroll-field__input:focus {
    border-color: var(--blue-500, #3b82f6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

body.light .enroll-field__input::placeholder {
    color: #9ca3af;
}

/* Select */
.enroll-field__select {
    appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.enroll-field__chevron {
    position: absolute;
    right: 14px;
    color: var(--text-muted, #94a3b8);
    pointer-events: none;
}

/* Textarea */
.enroll-field__textarea {
    padding-left: 14px;
    resize: vertical;
    min-height: 80px;
}

.enroll-field__char-count {
    display: block;
    text-align: right;
    font-size: 0.6875rem;
    color: var(--text-muted, #94a3b8);
    margin-top: 4px;
}

/* Checkbox */
.enroll-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.enroll-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.enroll-checkbox__check {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1.5px solid var(--border-glass, rgba(255, 255, 255, 0.2));
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.2s ease;
    color: transparent;
}

.enroll-checkbox input:checked + .enroll-checkbox__check {
    background: linear-gradient(135deg, var(--blue-500, #3b82f6), var(--purple, #8b5cf6));
    border-color: transparent;
    color: #fff;
}

.enroll-checkbox__text {
    font-size: 0.8125rem;
    color: var(--text-body, #cbd5e1);
    line-height: 1.5;
}

body.light .enroll-checkbox__text {
    color: #4b5563;
}

body.light .enroll-checkbox__check {
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.03);
}

/* Error States */
.enroll-field__error {
    display: none;
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 4px;
}

.enroll-field.has-error .enroll-field__input {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.enroll-field.has-error .enroll-field__error {
    display: block;
}

/* Submit Button */
.enroll-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 100px;
    border: none;
    background: linear-gradient(135deg, var(--blue-500, #3b82f6), var(--purple, #8b5cf6));
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.enroll-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.45);
}

.enroll-submit:active {
    transform: translateY(0);
}

.enroll-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.enroll-submit__price {
    padding: 2px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.8125rem;
    font-weight: 700;
}

.enroll-submit__loader {
    display: none;
    animation: spin 1s linear infinite;
}

.enroll-submit.is-loading .enroll-submit__text,
.enroll-submit.is-loading .enroll-submit__price,
.enroll-submit.is-loading .enroll-submit__arrow {
    display: none;
}

.enroll-submit.is-loading .enroll-submit__loader {
    display: block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Note */
.enroll-form__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted, #94a3b8);
}

body.light .enroll-form__note {
    color: #9ca3af;
}

/* Success State */
.enroll-success {
    display: none;
    text-align: center;
    padding: 1rem 0;
}

.enroll-success.is-visible {
    display: block;
    animation: success-in 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes success-in {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.enroll-success__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: #10b981;
}

.enroll-success__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-bright, #f1f5f9);
    margin-bottom: 0.5rem;
}

body.light .enroll-success__title {
    color: #0f172a;
}

.enroll-success__message {
    font-size: 0.9375rem;
    color: var(--text-body, #cbd5e1);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.light .enroll-success__message {
    color: #4b5563;
}

.enroll-success__message span {
    color: var(--blue-400, #60a5fa);
    font-weight: 600;
}

.enroll-success__details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.08));
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

body.light .enroll-success__details {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

.enroll-success__detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.enroll-success__detail-label {
    font-size: 0.8125rem;
    color: var(--text-muted, #94a3b8);
}

.enroll-success__detail-value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-bright, #f1f5f9);
}

body.light .enroll-success__detail-value {
    color: #0f172a;
}

.enroll-success__btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 100px;
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.15));
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-bright, #f1f5f9);
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
}

.enroll-success__btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

body.light .enroll-success__btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.12);
    color: #0f172a;
}

body.light .enroll-success__btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Hide form when success shows */
.enroll-form.is-hidden {
    display: none;
}

/* Mobile */
@media (max-width: 480px) {
    .enroll-modal {
        padding: 0;
        align-items: flex-end;
    }
    
    .enroll-modal__content {
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        padding: 1.5rem;
    }
    
    .enroll-modal.is-active .enroll-modal__content {
        transform: translateY(0);
    }
    
    .enroll-modal__content {
        transform: translateY(100%);
    }
}