﻿
.offer-sidebar {
    position: sticky;
    top: 90px;
    background: var(--bc-card);
    border: 1px solid var(--bc-border);
    border-radius: 22px;
    padding: 18px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--bc-shadow);
}

[data-bs-theme="dark"] .offer-sidebar {
    background: linear-gradient(160deg, rgba(8,20,38,.96), rgba(2,8,23,.98));
}

.offer-sidebar::before {
    content: "";
    position: absolute;
    left: -100px;
    top: 30%;
    width: 160px;
    height: 220px;
    background: #26d3e4;
    filter: blur(100px);
    opacity: .12;
    pointer-events: none;
}

/
/* CTA buttons */
.offer-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.btn-yellow {
    background: rgba(38,211,228,.08);
    border: 1px solid rgba(38,211,228,.22);
    color: var(--bc-text);
    border-radius: 14px;
    height: 50px;
    font-weight: 700;
    font-size: .9rem;
    transition: .25s;
}

    .btn-yellow:hover {
        background: rgba(38,211,228,.14);
        border-color: rgba(38,211,228,.35);
    }

.offer-enroll-btn {
    height: 52px;
    border: none;
    border-radius: 14px;
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
    background: linear-gradient(135deg, #26d3e4, #1bb7c9);
    box-shadow: 0 10px 26px rgba(38,211,228,.28);
    transition: .25s;
}

    .offer-enroll-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(38,211,228,.36);
    }

/* divider */
.stats-divider {
    margin: 14px 0;
    border: none;
    height: 1px;
    background: var(--bc-border);
}

/* STATS GRID — 2 PER ROW */
.stats-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.tile-2 {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-items: center;
    gap: 8px;
    padding: 12px;
    min-height: 65px;
    border-radius: 14px;
    background: rgba(38,211,228,.04);
    border: 1px solid var(--bc-border);
    transition: all .25s ease;
}

    .tile-2:hover {
        transform: translateY(-2px);
        border-color: rgba(38,211,228,.28);
        background: rgba(38,211,228,.08);
    }

.tile-2-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(38,211,228,.12);
    color: #1bb7c9;
}

[data-bs-theme="dark"] .tile-2-icon {
    color: #22d3ee;
}

.tile-2-icon svg {
    width: 16px;
    height: 16px;
}

.tile-2-label {
    font-size: .8rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--bc-text);
}

/* MOBILE */
@media (max-width: 576px) {
    .stats-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .tile-2 {
        min-height: 70px;
        padding: 10px;
    }

    .tile-2-label {
        font-size: .74rem;
    }

    .btn-yellow,
    .offer-enroll-btn {
        height: 46px;
    }
}

@media (max-width: 991px) {
    .offer-sidebar {
        position: static;
        margin-top: 24px;
    }
}

/* ══════════════════════════════
   HERO LEFT PANEL — TEAL THEME
══════════════════════════════ */

.hero-left-panel {
    position: relative;
    padding-right: 1rem;
}

/* ── Badge ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(38,211,228,.08);
    border: 1px solid rgba(38,211,228,.18);
    color: #0e9aaa !important;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .01em;
    backdrop-filter: blur(10px);
}

[data-bs-theme="dark"] .hero-badge {
    background: rgba(38,211,228,.08);
    border-color: rgba(38,211,228,.16);
    color: #4ddcec;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #26d3e4, #1bb7c9);
    box-shadow: 0 0 10px rgba(38,211,228,.6);
    flex-shrink: 0;
    animation: heroBadgePulse 2s ease-in-out infinite;
}

@keyframes heroBadgePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .55;
        transform: scale(.8);
    }
}

/* ── Title ── */
.hero-title {
    font-size: clamp(2.1rem, 3.2vw, 3.4rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1.4px;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #0f172a 30%, #26d3e4 75%, #1bb7c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-bs-theme="dark"] .hero-title-gradient {
    background: linear-gradient(135deg, #ffffff 25%, #43dff0 75%, #26d3e4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Description ── */
.hero-description {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--bc-muted);
    max-width: 640px;
    font-weight: 500;
    letter-spacing: -.1px;
}

/* ── Buttons ── */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    padding: .85rem 1.5rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: .92rem;
    color: #fff;
    background: linear-gradient(135deg, #26d3e4, #1bb7c9);
    box-shadow: 0 10px 26px rgba(38,211,228,.28);
    transition: all .25s ease;
}

    .hero-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(38,211,228,.38);
        color: #fff;
    }

    .hero-btn-primary svg {
        transition: transform .25s ease;
    }

    .hero-btn-primary:hover svg {
        transform: translateX(3px);
    }

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .85rem 1.4rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: .92rem;
    color: var(--bc-text);
    background: rgba(38,211,228,.05);
    border: 1px solid var(--bc-border);
    transition: all .25s ease;
}

    .hero-btn-secondary:hover {
        background: rgba(38,211,228,.1);
        border-color: rgba(38,211,228,.3);
        color: var(--bc-text);
        transform: translateY(-2px);
    }

/* ── Feature chips ── */
.hero-feature-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 8px;
    border-radius: 999px;
    background: rgba(38,211,228,.04);
    border: 1px solid var(--bc-border);
    color: var(--bc-text);
    transition: all .25s ease;
}

    .hero-feature-chip:hover {
        background: rgba(38,211,228,.09);
        border-color: rgba(38,211,228,.25);
        transform: translateY(-1px);
    }

/* ── Mobile ── */
@media (max-width: 991px) {
    .hero-left-panel {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        letter-spacing: -1px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        flex: 1;
        justify-content: center;
        padding: .78rem 1rem;
        font-size: .85rem;
    }

    .hero-feature-chip {
        font-size: .78rem;
        padding: 6px 12px 6px 6px;
    }
}


/* ── Why / Features card grid ── */
.sh-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

@media (max-width: 991px) {
    .sh-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sh-card-grid {
        grid-template-columns: 1fr;
    }
}

.sh-feat-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 1.25rem;
    border-radius: 16px;
    background: var(--bc-card, #ffffff);
    border: 1px solid var(--bc-border, #e2e8f0);
    transition: all .25s ease;
}

    .sh-feat-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #26d3e4, #1bb7c9);
        border-radius: 16px 16px 0 0;
    }

    .sh-feat-card:hover {
        transform: translateY(-4px);
        border-color: rgba(38,211,228,.3);
        box-shadow: 0 14px 30px rgba(15,23,42,.08), 0 0 20px rgba(38,211,228,.06);
    }

[data-bs-theme="dark"] .sh-feat-card {
    background: rgba(8,20,38,.72);
    border-color: rgba(255,255,255,.07);
}

    [data-bs-theme="dark"] .sh-feat-card:hover {
        border-color: rgba(38,211,228,.22);
        box-shadow: 0 14px 30px rgba(0,0,0,.3), 0 0 20px rgba(38,211,228,.08);
    }

.sh-feat-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(38,211,228,.1);
    color: #1bb7c9;
}

[data-bs-theme="dark"] .sh-feat-icon {
    background: rgba(38,211,228,.14);
    color: #22d3ee;
}

.sh-feat-icon svg {
    width: 20px;
    height: 20px;
}

.sh-feat-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--bc-text, #0f172a);
    line-height: 1.3;
    margin: 0;
}

[data-bs-theme="dark"] .sh-feat-title {
    color: #f8fafc;
}

.sh-feat-desc {
    font-size: .83rem;
    color: var(--bc-muted, #64748b);
    line-height: 1.6;
    margin: 0;
}

/* ── Career image ── */
.sh-career-img {
    text-align: center;
    margin-top: 1.25rem;
}

    .sh-career-img img {
        max-width: 100%;
        border-radius: 16px;
        box-shadow: 0 20px 50px rgba(15,23,42,.1);
        border: 1px solid var(--bc-border, #e2e8f0);
        transition: transform .35s ease;
    }

        .sh-career-img img:hover {
            transform: translateY(-4px) scale(1.01);
        }

[data-bs-theme="dark"] .sh-career-img img {
    border-color: rgba(255,255,255,.07);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}


/* 
  TOOLS & TECHNOLOGIES
*/


/* ── header ── */
.tools-ticker-header {
    text-align: center;
    margin-bottom: 1rem;
}

.tools-ticker-eyebrow {
    display: inline-flex;
    align-items: center;
    text-align: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--bc-muted);
    margin-bottom: .55rem;
}

    .tools-ticker-eyebrow span {
        width: 20px;
        height: 1px;
        background: var(--bc-border);
        display: inline-block;
    }

.tools-ticker-title {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--bc-text);
    line-height: 1.2;
}

/* ── ticker outer wrap (clips + fades edges) ── */
.tools-ticker-wrap {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient( to right, transparent 0%, #000 7%, #000 93%, transparent 100% );
    -webkit-mask-image: linear-gradient( to right, transparent 0%, #000 7%, #000 93%, transparent 100% );
}

    /* pause both rows on hover */
    .tools-ticker-wrap:hover .tools-ticker-track-1,
    .tools-ticker-wrap:hover .tools-ticker-track-2 {
        animation-play-state: paused;
    }

/* ── row 1 — left ── */
.tools-ticker-track-1 {
    display: flex;
    gap: 10px;
    width: max-content;
    margin-bottom: 10px;
    animation: tickerLeft 38s linear infinite;
}

/* ── row 2 — right ── */
.tools-ticker-track-2 {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: tickerRight 44s linear infinite;
}

/* ── keyframes ── */
@keyframes tickerLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes tickerRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ── chip ── */
.t-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .52rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--bc-border);
    background: #ffffff;
    color: var(--bc-text);
    font-size: .82rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: default;
    flex-shrink: 0;
    transition: border-color .2s ease, background .2s ease;
}

    .t-chip:hover {
        border-color: rgba(38,211,228,.3);
        background: rgba(38,211,228,.05);
    }

    .t-chip img {
        width: 20px;
        height: 20px;
        object-fit: contain;
        flex-shrink: 0;
    }

/* ── dark mode ── */
[data-bs-theme="dark"] .t-chip {
    background: rgba(15,23,42,.75);
    border-color: rgba(255,255,255,.07);
    color: #e2e8f0;
}

    [data-bs-theme="dark"] .t-chip:hover {
        background: rgba(38,211,228,.08);
        border-color: rgba(38,211,228,.2);
    }

/* ── mobile ── */
@media (max-width: 576px) {


    .tools-ticker-title {
        font-size: 1.25rem;
    }

    .t-chip {
        font-size: .75rem;
        padding: .45rem .85rem;
        gap: 6px;
    }

        .t-chip img {
            width: 16px;
            height: 16px;
        }
}
/* ===========================
   NEXT BATCH CARD
=========================== */

.next-batch-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    max-width: 520px;
    transition: all .25s ease;
    /* Light Mode */
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 8px 24px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
}

    .next-batch-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 40px rgba(15,23,42,.10), 0 2px 4px rgba(15,23,42,.05);
    }

/* ===========================
   ICON
=========================== */

.batch-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2563eb;
    background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(59,130,246,.06));
    border: 1px solid rgba(37,99,235,.12);
}

/* ===========================
   CONTENT
=========================== */

.batch-content {
    flex: 1;
    min-width: 0;
}

.batch-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #64748b;
    margin-bottom: 4px;
}

.batch-date {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

.batch-time {
    margin-top: 3px;
    font-size: 13px;
    color: #64748b;
}

/* ===========================
   STATUS
=========================== */

.batch-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    white-space: nowrap;
    background: rgba(16,185,129,.10);
    border: 1px solid rgba(16,185,129,.15);
    color: #059669;
    font-size: 12px;
    font-weight: 700;
}

    .batch-status span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ee1751;
        box-shadow: 0 0 0 4px rgba(238,23,81,.15);
    }

/* =====================================
   DARK MODE
===================================== */

html[data-bs-theme="dark"] .next-batch-card,
body[data-bs-theme="dark"] .next-batch-card,
[data-bs-theme="dark"] .next-batch-card,
html[data-theme="dark"] .next-batch-card,
body[data-theme="dark"] .next-batch-card,
[data-theme="dark"] .next-batch-card,
.dark .next-batch-card {
    background: rgba(15,23,42,.60);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 30px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.05);
}

html[data-bs-theme="dark"] .batch-date,
body[data-bs-theme="dark"] .batch-date,
[data-bs-theme="dark"] .batch-date,
html[data-theme="dark"] .batch-date,
body[data-theme="dark"] .batch-date,
[data-theme="dark"] .batch-date,
.dark .batch-date {
    color: #fff;
}

html[data-bs-theme="dark"] .batch-label,
body[data-bs-theme="dark"] .batch-label,
[data-bs-theme="dark"] .batch-label,
html[data-theme="dark"] .batch-label,
body[data-theme="dark"] .batch-label,
[data-theme="dark"] .batch-label,
.dark .batch-label {
    color: #94a3b8;
}

html[data-bs-theme="dark"] .batch-time,
body[data-bs-theme="dark"] .batch-time,
[data-bs-theme="dark"] .batch-time,
html[data-theme="dark"] .batch-time,
body[data-theme="dark"] .batch-time,
[data-theme="dark"] .batch-time,
.dark .batch-time {
    color: #cbd5e1;
}

html[data-bs-theme="dark"] .batch-icon,
body[data-bs-theme="dark"] .batch-icon,
[data-bs-theme="dark"] .batch-icon,
html[data-theme="dark"] .batch-icon,
body[data-theme="dark"] .batch-icon,
[data-theme="dark"] .batch-icon,
.dark .batch-icon {
    color: #60a5fa;
    background: rgba(59,130,246,.18);
    border-color: rgba(59,130,246,.25);
}

html[data-bs-theme="dark"] .batch-status,
body[data-bs-theme="dark"] .batch-status,
[data-bs-theme="dark"] .batch-status,
html[data-theme="dark"] .batch-status,
body[data-theme="dark"] .batch-status,
[data-theme="dark"] .batch-status,
.dark .batch-status {
    background: rgba(16,185,129,.15);
    border-color: rgba(16,185,129,.25);
    color: #34d399;
}

/* Existing override */
[data-bs-theme="dark"] .box-rounded,
.box-rounded {
    border-radius: 0 !important;
    border: 0 !important;
}

[data-bs-theme="dark"] .box-rounded, .box-rounded {
    border-radius: 0px !important;
    border: 0px !important;
}

/* WHY section */
.why-icon svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.why-dotnet-ai {
    position: relative;
}

.key-header {
    max-width: 850px;
}

.why-title {
    font-size: clamp(2.2rem,2.5vw,4rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--bc-text);
}

.why-subtitle {
    font-size: 1.12rem;
    line-height: 1.8;
    color: var(--bc-muted);
    max-width: 760px;
    margin-inline: auto;
}

/* CARD */


.why-card-modern {
    position: relative;
    overflow: hidden;
    padding: 1.4rem;
    border-radius: 24px;
    background: linear-gradient( 145deg, rgba(255,255,255,.96), rgba(248,250,252,.92) );
    border: 1px solid rgba(15,23,42,.06);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 28px rgba(15,23,42,.05), inset 0 1px 0 rgba(255,255,255,.9);
    transition: all .28s ease;
}

    .why-card-modern:hover {
        transform: translateY(-5px);
        border-color: rgba(38,211,228,.18);
        box-shadow: 0 20px 40px rgba(15,23,42,.08), 0 0 28px rgba(38,211,228,.06);
    }

    .why-card-modern::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient( 135deg, rgba(38,211,228,.18), rgba(255,255,255,.05), rgba(99,102,241,.08) );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
    }

.why-modern-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 12px 26px rgba(0,0,0,.12);
}

    .why-modern-icon svg {
        width: 24px;
        height: 24px;
    }

.speed-icon {
    background: linear-gradient(135deg,#26d3e4,#1bb7c9);
}

.demand-icon {
    background: linear-gradient(135deg,#8b5cf6,#6366f1);
}

.salary-icon {
    background: linear-gradient(135deg,#10b981,#059669);
}

.ai-icon {
    background: linear-gradient(135deg,#f59e0b,#f97316);
}



.why-card-text {
    font-size: .9rem;
    line-height: 1.7;
    color: var(--bc-muted);
}

[data-bs-theme="dark"] .why-card-modern {
    background: linear-gradient( 145deg, rgba(8,20,38,.96), rgba(2,8,23,.98) );
    border: 1px solid rgba(255,255,255,.06);
}

@media(max-width:768px) {

    .why-card-modern {
        padding: 1rem;
        border-radius: 20px;
    }

    .why-modern-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 16px;
    }

        .why-modern-icon svg {
            width: 18px;
            height: 18px;
        }

    .why-card-title {
        font-size: .85rem;
    }

    .why-card-text {
        font-size: .72rem;
        line-height: 1.5;
    }
}


/* TITLE */

.why-card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: var(--bc-text);
}

/* TEXT */

.why-card-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--bc-muted);
}

/* DARK MODE */


/* MOBILE */

@media(max-width:768px) {

    .why-title {
        font-size: 2rem;
    }

    .why-card-title {
        font-size: 1.15rem;
    }
}

/* ══════════════════════════════════════
   FEATURES / OUTCOMES CARDS
 .══════════════════════════════════════ */

/* ── grid ── */
.cg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* ── card ── */
.cg-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 1rem 1.2rem 0.9rem;
    border-radius: 12px;
    border: 1px solid var(--bc-border);
    background: #ffffff;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

    .cg-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 36px rgba(15,23,42,.08);
    }

    /* top accent line */
    .cg-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1.5px;
        border-radius: 18px 18px 0 0;
    }

.cg-c1::before {
    background: linear-gradient(90deg,#26d3e4,#1bb7c9);
}

.cg-c2::before {
    background: linear-gradient(90deg,#8b5cf6,#6366f1);
}

.cg-c3::before {
    background: linear-gradient(90deg,#10b981,#059669);
}

.cg-c4::before {
    background: linear-gradient(90deg,#f59e0b,#f97316);
}

.cg-c5::before {
    background: linear-gradient(90deg,#ec4899,#be185d);
}

.cg-c6::before {
    background: linear-gradient(90deg,#06b6d4,#2563eb);
}

/* hover border tint matches accent */
.cg-c1:hover {
    border-color: rgba(38,211,228,.28);
}

.cg-c2:hover {
    border-color: rgba(139,92,246,.28);
}

.cg-c3:hover {
    border-color: rgba(16,185,129,.28);
}

.cg-c4:hover {
    border-color: rgba(245,158,11,.28);
}

.cg-c5:hover {
    border-color: rgba(236,72,153,.28);
}

.cg-c6:hover {
    border-color: rgba(6,182,212,.28);
}

/* ── icon ── */
.cg-icon-wrap {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cg-icon-wrap svg {
        width: 18px;
        height: 18px;
    }

.cg-c1 .cg-icon-wrap {
    background: rgba(38,211,228,.1);
    color: #0e9aaa;
}

.cg-c2 .cg-icon-wrap {
    background: rgba(139,92,246,.1);
    color: #7c3aed;
}

.cg-c3 .cg-icon-wrap {
    background: rgba(16,185,129,.1);
    color: #059669;
}

.cg-c4 .cg-icon-wrap {
    background: rgba(245,158,11,.1);
    color: #d97706;
}

.cg-c5 .cg-icon-wrap {
    background: rgba(236,72,153,.1);
    color: #db2777;
}

.cg-c6 .cg-icon-wrap {
    background: rgba(6,182,212,.1);
    color: #0284c7;
}

/* ── text ── */
.cg-body {
    flex: 1;
}

.cg-kicker {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.cg-c1 .cg-kicker {
    color: #0e9aaa;
}

.cg-c2 .cg-kicker {
    color: #7c3aed;
}

.cg-c3 .cg-kicker {
    color: #059669;
}

.cg-c4 .cg-kicker {
    color: #d97706;
}

.cg-c5 .cg-kicker {
    color: #db2777;
}

.cg-c6 .cg-kicker {
    color: #0284c7;
}

.cg-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--bc-text);
    margin-bottom: 4px;
    line-height: 1.3;
}

.cg-desc {
    font-size: 12px;
    color: var(--bc-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── stat pill ── */
.cg-pill {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 2px;
}

.cg-c1 .cg-pill {
    background: rgba(38,211,228,.08);
    color: #0e9aaa;
}

.cg-c2 .cg-pill {
    background: rgba(139,92,246,.08);
    color: #6d28d9;
}

.cg-c3 .cg-pill {
    background: rgba(16,185,129,.08);
    color: #047857;
}

.cg-c4 .cg-pill {
    background: rgba(245,158,11,.08);
    color: #b45309;
}

.cg-c5 .cg-pill {
    background: rgba(236,72,153,.08);
    color: #9d174d;
}

.cg-c6 .cg-pill {
    background: rgba(6,182,212,.08);
    color: #0369a1;
}

/* ── dark mode ── */
[data-bs-theme="dark"] .cg-card {
    background: rgba(8,20,38,.72);
    border-color: rgba(255,255,255,.07);
}

[data-bs-theme="dark"] .cg-c1 .cg-kicker,
[data-bs-theme="dark"] .cg-c1 .cg-pill {
    color: #22d3ee;
}

[data-bs-theme="dark"] .cg-c2 .cg-kicker,
[data-bs-theme="dark"] .cg-c2 .cg-pill {
    color: #a78bfa;
}

[data-bs-theme="dark"] .cg-c3 .cg-kicker,
[data-bs-theme="dark"] .cg-c3 .cg-pill {
    color: #34d399;
}

[data-bs-theme="dark"] .cg-c4 .cg-kicker,
[data-bs-theme="dark"] .cg-c4 .cg-pill {
    color: #fbbf24;
}

[data-bs-theme="dark"] .cg-c5 .cg-kicker,
[data-bs-theme="dark"] .cg-c5 .cg-pill {
    color: #f472b6;
}

[data-bs-theme="dark"] .cg-c6 .cg-kicker,
[data-bs-theme="dark"] .cg-c6 .cg-pill {
    color: #38bdf8;
}

[data-bs-theme="dark"] .cg-c1 .cg-pill {
    background: rgba(38,211,228,.1);
}

[data-bs-theme="dark"] .cg-c2 .cg-pill {
    background: rgba(139,92,246,.1);
}

[data-bs-theme="dark"] .cg-c3 .cg-pill {
    background: rgba(16,185,129,.1);
}

[data-bs-theme="dark"] .cg-c4 .cg-pill {
    background: rgba(245,158,11,.1);
}

[data-bs-theme="dark"] .cg-c5 .cg-pill {
    background: rgba(236,72,153,.1);
}

[data-bs-theme="dark"] .cg-c6 .cg-pill {
    background: rgba(6,182,212,.1);
}

/* ── tablet: 2 cols ── */
@media (max-width: 991px) {
    .cg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── mobile: 1 col ── */
@media (max-width: 576px) {
    .cg-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .cg-card {
        padding: 1rem;
        border-radius: 14px;
    }

    .cg-icon-wrap {
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }

        .cg-icon-wrap svg {
            width: 15px;
            height: 15px;
        }

    .cg-title {
        font-size: 12.5px;
    }

    .cg-desc {
        display: none;
    }

    .cg-pill {
        font-size: 10px;
        padding: 2px 8px;
    }
}

.cg-top {
    display: flex;
    align-items: center;
    gap: 10px;
}


    .cg-top .cg-kicker {
        margin-bottom: 0;
    }


/* newww*/
style >
/* ───────── shared accents ───────── */
.po-section, .feat-section {
    --ac-teal: #26d3e4;
    --ac-teal-deep: #1bb7c9;
    --ac-violet: #6366f1;
    --ac-grad: linear-gradient(135deg,#26d3e4,#6366f1);
    font-family: 'Inter',sans-serif;
}

/* ───────── eyebrow + title (kept from your design) ───────── */
.po-eyebrow-row {
    text-align: center;
    margin-bottom: 1.9rem;
    position: relative;
    z-index: 1;
}

.po-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 700 11px 'Sora',sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #0e9aaa;
    margin-bottom: .7rem;
}

[data-bs-theme="dark"] .po-eyebrow {
    color: #4ddcec;
}

.po-eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg,#26d3e4,#1bb7c9);
    box-shadow: 0 0 10px rgba(38,211,228,.6);
    animation: po-dot 2s ease-in-out infinite;
}

@keyframes po-dot {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.78)
    }
}

.po-title {
    font: 800 clamp(1.7rem,2.6vw,2.4rem) 'Sora',sans-serif;
    letter-spacing: -1px;
    color: var(--bc-text,#0f1f30);
    margin: 0;
}

    .po-title b {
        font-weight: 800;
        background: linear-gradient(135deg,#26d3e4,#1bb7c9);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* ═══════════ PROGRAM OVERVIEW ═══════════ */
.po-section {
    position: relative;
    /*    padding: 1rem 0;*/
}


.po-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
}

/* the framed card */
.po-frame {
    position: relative;
    border-radius: 26px;
}

/* laser ring — animated ONLY in dark mode */
.po-laser {
    position: absolute;
    inset: -1px;
    border-radius: 27px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    /* light-mode default: a calm STATIC gradient ring, no movement */
    background: linear-gradient(135deg,rgba(38,211,228,.55),rgba(99,102,241,.35),rgba(38,211,228,.15));
}

    .po-laser::before {
        content: "";
        position: absolute;
        inset: 0;
    }

[data-bs-theme="dark"] .po-laser {
    background: none;
}

    [data-bs-theme="dark"] .po-laser::before {
        position: absolute;
        width: 200%;
        height: 200%;
        top: -50%;
        left: -50%;
        inset: auto;
        background: conic-gradient(transparent 72%,#26d3e4,#6366f1,transparent 92%);
        animation: po-rotate 4s linear infinite;
    }

@keyframes po-rotate {
    to {
        transform: rotate(360deg);
    }
}

.po-body {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    padding: 2.25rem 2rem;
    background: var(--bc-card,#fff);
    border: 1px solid rgba(255,255,255,.8);
    box-shadow: 0 30px 70px -34px rgba(15,31,48,.18);
}

[data-bs-theme="dark"] .po-body {
    background: linear-gradient(160deg,rgba(8,20,38,.96),rgba(2,8,23,.98));
    border-color: rgba(255,255,255,.06);
    box-shadow: 0 40px 80px -30px rgba(0,0,0,.45);
}
/* faint grid texture */
.po-body::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .5;
    background-image: linear-gradient(rgba(15,31,48,.025) 1px,transparent 1px), linear-gradient(90deg,rgba(15,31,48,.025) 1px,transparent 1px);
    background-size: 34px 34px;
}

[data-bs-theme="dark"] .po-body::before {
    background-image: linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
}

.po-inner {
    position: relative;
    z-index: 2;
}

.po-tag {
    display: block;
    font: 700 .62rem 'Sora',sans-serif;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #7000ff;
    margin-bottom: 8px;
}

[data-bs-theme="dark"] .po-tag {
    color: #a78bfa;
}

.po-lead {
    font-size: .95rem;
    line-height: 1.6;
    color: var(--bc-muted,#5a6e80);
    max-width: 640px;
    margin: 0 0 1.6rem;
}

    .po-lead strong {
        color: var(--bc-text,#0f1f30);
        font-weight: 600;
    }

/* capability cards */
.po-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}

.po-card {
    position: relative;
    border-radius: 12px;
    padding: 18px 18px 20px;
    background: var(--bc-card,#fff);
    border: 1px solid var(--bc-border,rgba(15,31,48,.09));
    overflow: hidden;
    transition: transform .3s cubic-bezier(.22,.8,.36,1), border-color .3s ease, box-shadow .3s ease;
}

[data-bs-theme="dark"] .po-card {
    background: rgba(255,255,255,.025);
}
/* top accent hairline grows on hover */
.po-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--ac-grad);
    transition: width .4s ease;
}

.po-card:hover {
    transform: translateY(-4px);
    border-color: rgba(38,211,228,.4);
    box-shadow: 0 14px 30px -16px rgba(38,211,228,.35);
}

    .po-card:hover::after {
        width: 100%;
    }

.po-ic {
    width: 42px;
    height: 42px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    background: #00cade8f;
    color: var(--ac-teal-deep);
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.po-card:hover .po-ic {
    background: #18afc6;
    /*    color: #fff;*/
    transform: scale(1.05);
}

[data-bs-theme="dark"] .po-ic {
    background: rgba(38,211,228,.16);
    color: #22d3ee;
}

.po-ic svg {
    width: 21px;
    height: 21px;
}

.po-h {
    font: 700 1rem 'Sora',sans-serif;
    color: var(--bc-text,#0f1f30);
    margin: 0 0 5px;
    line-height: 1.3;
}

.po-p {
    font-size: .83rem;
    line-height: 1.55;
    color: var(--bc-muted,#5a6e80);
    margin: 0;
}

/* outcome pills */
.po-foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    /*    margin-top: 1.5rem;*/
    padding-top: 1.4rem;
    /*    border-top: 1px solid var(--bc-border,rgba(15,31,48,.09));*/
}

.po-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font: 600 .8rem 'Sora',sans-serif;
    color: var(--bc-text,#0f1f30);
    padding: 8px 15px;
    border-radius: 50px;
    background: rgba(38,211,228,.06);
    border: 1px solid var(--bc-border,rgba(15,31,48,.09));
}

    .po-pill svg {
        width: 15px;
        height: 15px;
        color: var(--ac-teal-deep);
        background: #1be91b;
        border-radius: 50%;
        padding: 3px;
    }

[data-bs-theme="dark"] .po-pill svg {
    color: #22d3ee;
}

/* ═══════════ FEATURES (what you get) ═══════════ */
.feat-section {
    position: relative;
    padding: 2.5rem 0 3rem;
}

.feat-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.feat-card {
    position: relative;
    border-radius: 12px;
    padding: 24px 22px;
    background: var(--bc-card,#fff);
    border: 1px solid var(--bc-border,rgba(15,31,48,.09));
    overflow: hidden;
    transition: transform .3s cubic-bezier(.22,.8,.36,1), border-color .3s ease, box-shadow .3s ease;
}

[data-bs-theme="dark"] .feat-card {
    background: rgba(255,255,255,.025);
}

.feat-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 3px;
    border-radius: 3px;
    background: var(--ac-grad);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s ease;
}

.feat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99,102,241,.35);
    box-shadow: 0 18px 36px -18px rgba(99,102,241,.35);
}

    .feat-card:hover::before {
        transform: scaleY(1);
    }

.feat-ic {
    width: 48px;
    height: 48px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(38,211,228,.12);
    color: var(--ac-teal-deep);
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.feat-card:hover .feat-ic {
    background: var(--ac-grad);
    color: #fff;
    transform: rotate(0deg) scale(1.05);
}

[data-bs-theme="dark"] .feat-ic {
    background: rgba(38,211,228,.16);
    color: #22d3ee;
}

.feat-ic svg {
    width: 24px;
    height: 24px;
}

.feat-h {
    font: 700 1.08rem 'Sora',sans-serif;
    color: var(--bc-text,#0f1f30);
    margin: 0 0 7px;
    line-height: 1.3;
}

.feat-p {
    font-size: .88rem;
    line-height: 1.55;
    color: var(--bc-muted,#5a6e80);
    margin: 0;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width:991px) {
    .po-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .feat-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .po-body {
        padding: 1.8rem 1.5rem;
    }
}

@media (max-width:600px) {
    .po-section {
        padding: 1.75rem 0;
    }

    .feat-section {
        padding: 1.75rem 0 2.25rem;
    }

    .po-grid, .feat-grid {
        /*        grid-template-columns: 1fr;*/
        gap: 12px;
    }


    .po-body {
        padding: 1.5rem 1.2rem;
        border-radius: 20px;
    }
    .po-p { 
        display: none;
    }

    .po-laser {
        border-radius: 21px;
    }

    .po-card:hover, .feat-card:hover {
        transform: none;
    }

    .feat-card {
        padding: 20px 18px;
    }
}

@media (prefers-reduced-motion:reduce) {
    .po-laser::before, .po-eyebrow i {
        animation: none !important;
    }

    .po-card, .feat-card, .po-ic, .feat-ic {
        transition: none;
    }
}

:root, [data-bs-theme="light"] {
    --bc-text: #0f1f30;
    --bc-card: #ffffff;
    --bc-muted: #5a6e80;
    --bc-border: rgba(15,31,48,.09);
    --pv-bg: #f4fafb;
}

[data-bs-theme="dark"] {
    --bc-text: #e8f4fd;
    --bc-card: rgba(10,22,40,.55);
    --bc-muted: #8bb8d4;
    --bc-border: rgba(255,255,255,.08);
    --pv-bg: #040b16;
}

body {
    background: var(--pv-bg);
    margin: 0;
    transition: background .4s ease;
}

.pv-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 99;
    cursor: pointer;
    font: 600 13px 'Sora',sans-serif;
    padding: 9px 16px;
    border-radius: 50px;
    border: 1px solid var(--bc-border);
    background: var(--bc-card);
    color: var(--bc-text);
    backdrop-filter: blur(10px);
}



/*//Pricin*/
/* ════════════════════════════════════════════════════════════
   SECTION HEADING + TRAINING OPTIONS — v3 "outstanding"
   Centered symmetric cards · floating top-center discount pill
   (red→orange, pulse + glassy shine) · bigger middle card ·
   corporate green circular ticks · glassy shine sweep.
════════════════════════════════════════════════════════════ */

/* ───────── section heading ───────── */
.sh-head {
    text-align: center;
    margin-bottom: 2.4rem;
}

.sh-title {
    font: 800 clamp(1.5rem,2.4vw,2.2rem) 'Sora','Inter',sans-serif;
    letter-spacing: -.5px;
    margin: 0;
    line-height: 1.15;
    background: linear-gradient(135deg,#0891b2 0%,#3b82f6 50%,#7c3aed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sh-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: .65rem;
}

    .sh-rule::before, .sh-rule::after {
        content: "";
        height: 2px;
        width: 34px;
        border-radius: 2px;
    }

    .sh-rule::before {
        background: linear-gradient(90deg,transparent,#22d3ee);
    }

    .sh-rule::after {
        background: linear-gradient(90deg,#7c3aed,transparent);
    }

    .sh-rule i {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        flex: none;
        background: linear-gradient(135deg,#22d3ee,#7c3aed);
        box-shadow: 0 0 10px rgba(34,211,238,.6);
        animation: sh-dot 2s ease-in-out infinite;
    }

@keyframes sh-dot {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.78)
    }
}

/* ───────── tokens ───────── */
.to-section {
    --to-ink: #0f1f30;
    --to-muted: #64748b;
    --to-bd: rgba(15,31,48,.09);
    --to-grad: linear-gradient(135deg,#06b6d4,#3b82f6);
    --to-feat-bg: rgba(8,145,178,.05);
    position: relative;
    font-family: 'Inter',sans-serif;
}

[data-bs-theme="dark"] .to-section {
    --to-ink: #e8f4fd;
    --to-muted: #94a3b8;
    --to-bd: rgba(255,255,255,.08);
    --to-feat-bg: rgba(255,255,255,.04);
}

/* grid — middle column wider */
.to-grid {
    display: grid;
    padding: 0.5rem;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 26px;
    align-items: center !important;
    justify-content: center !important;
    /*    align-items: ;*/
}

/* ───────── card (outer = pill can overflow) ───────── */
.to-card {
    position: relative;
    overflow: visible;
    transition: transform .5s cubic-bezier(.23,1,.32,1);
}

    .to-card:hover {
        transform: translateY(-6px);
    }

.to-card--popular {
    z-index: 2;
}

@media(min-width:992px) {
    .to-card--popular {
        transform: scale(1.045);
    }

        .to-card--popular:hover {
            transform: scale(1.045) translateY(-6px);
        }
}

/* inner = clipped glassy surface */
.to-inner {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 14px;
    padding: 34px 22px 40px;
    border: 1px solid var(--to-bd);
    background: linear-gradient(160deg, rgba(255,255,255,.92), rgba(238,248,255,.78));
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    box-shadow: 0 10px 30px -14px rgba(15,31,48,.22);
    transition: box-shadow .5s ease, border-color .4s ease;
}

.to-card:hover .to-inner {
    box-shadow: 0 26px 46px -20px rgba(8,145,178,.3);
}

@supports not (backdrop-filter:blur(1px)) {
    .to-inner {
        background: linear-gradient(160deg,#ffffff,#eef6ff);
    }
}

[data-bs-theme="dark"] .to-inner {
    background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    box-shadow: 0 10px 30px -14px rgba(0,0,0,.55);
}
/* glassy top sheen */
.to-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 42%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,.55), transparent);
}

[data-bs-theme="dark"] .to-inner::before {
    background: linear-gradient(180deg, rgba(255,255,255,.07), transparent);
}

/* popular = bigger + accent ring + taller padding */
.to-card--popular .to-inner {
    padding: 40px 24px 40px;
    border-color: rgba(8,145,178,.4);
    background: linear-gradient(160deg, rgba(240,251,255,.95), rgba(255,255,255,.85));
    box-shadow: 0 22px 48px -18px rgba(8,145,178,.4);
}

[data-bs-theme="dark"] .to-card--popular .to-inner {
    background: linear-gradient(160deg, rgba(8,145,178,.16), rgba(255,255,255,.03));
    border-color: rgba(34,211,238,.45);
}

/* hover shine sweep (clipped by inner) */
.to-shine {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(125deg,transparent 38%,rgba(255,255,255,.4) 50%,transparent 62%);
    transform: translateX(-130%);
    transition: transform .85s ease;
}

.to-card:hover .to-shine {
    transform: translateX(130%);
}

[data-bs-theme="dark"] .to-shine {
    background: linear-gradient(125deg,transparent 38%,rgba(255,255,255,.08) 50%,transparent 62%);
}

/* keep content above sheen/shine */
.to-head, .to-price, .to-cta, .to-divider, .to-feats, .to-checks {
    position: relative;
    z-index: 2;
}

/* ───────── floating top-center discount pill ───────── */
.to-off {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
    padding: .5rem 1.05rem;
    border-radius: 999px;
    color: #fff;
    font: 800 .76rem 'Sora',sans-serif;
    letter-spacing: .02em;
    background: linear-gradient(135deg,#ff3b30,#ff9500);
    box-shadow: 0 6px 22px rgba(255,59,48,.42);
    animation: to-pulse 2.6s ease-in-out infinite;
}

    .to-off svg {
        width: 13px;
        height: 13px;
    }

    .to-off::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(120deg,transparent 28%,rgba(255,255,255,.6) 50%,transparent 72%);
        transform: translateX(-140%);
        animation: to-shimmer 3.4s ease-in-out infinite;
    }

@keyframes to-pulse {
    0%,100% {
        box-shadow: 0 6px 22px rgba(255,59,48,.42);
    }

    50% {
        box-shadow: 0 9px 32px rgba(255,59,48,.62);
    }
}

@keyframes to-shimmer {
    0% {
        transform: translateX(-140%);
    }

    55%,100% {
        transform: translateX(140%);
    }
}

/* corporate pill variant (violet, no pulse) */
.to-off.to-off--biz {
    background: linear-gradient(135deg,#8b5cf6,#6366f1);
    box-shadow: 0 6px 22px rgba(124,58,237,.4);
    animation: none;
}

/* ───────── head (centered) ───────── */
.to-head {
    margin-bottom: 14px;
}

.to-tag {
    display: inline-block;
    font: 800 .64rem 'Sora',sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 6px;
    background: linear-gradient(135deg,#0891b2,#7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.to-name {
    font: 700 1.12rem 'Sora',sans-serif;
    color: var(--to-ink);
    margin: 0;
}

.to-card--popular .to-name {
    font-size: 1.24rem;
}

.to-obj {
    font-size: .78rem;
    color: var(--to-muted);
    margin: 6px auto 0;
    line-height: 1.45;
    max-width: 240px;
}

/* ───────── price (centered) ───────── */
.to-price {
    margin-bottom: 16px;
}

.to-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
}

.to-old {
    font-size: .95rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.to-now {
    font: 800 1.75rem 'Sora',sans-serif;
    color: var(--to-ink);
    letter-spacing: -.5px;
}

.to-card--popular .to-now {
    font-size: 2rem;
}

.to-period {
    display: block;
    font-size: .73rem;
    color: var(--to-muted);
    margin-top: 4px;
}

/* ───────── enroll (premium) ───────── */
.to-cta {
    margin-bottom: 4px;
}

.to-enroll {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    font: 700 .92rem 'Sora',sans-serif;
    padding: .82rem 1.1rem;
    border-radius: 13px;
    background: var(--to-grad);
    box-shadow: 0 8px 20px -6px rgba(8,145,178,.45);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .to-enroll::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg,transparent 30%,rgba(255,255,255,.4) 50%,transparent 70%);
        transform: translateX(-130%);
        transition: transform .65s ease;
    }

    .to-enroll:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px -8px rgba(8,145,178,.55);
        color: #fff;
    }

        .to-enroll:hover::before {
            transform: translateX(130%);
        }

    .to-enroll svg {
        width: 16px;
        height: 16px;
        transition: transform .3s ease;
    }

    .to-enroll:hover svg {
        transform: translateX(3px);
    }

.to-biz-cta {
    background: linear-gradient(135deg,#8b5cf6,#6366f1);
    box-shadow: 0 8px 20px -6px rgba(99,102,241,.45);
}

.to-subscribed {
    text-align: center;
    width: 100%;
}

/* ───────── divider ───────── */
.to-divider {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 14px 0 11px;
}

    .to-divider::before, .to-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: rgba(100,116,139,.22);
    }

    .to-divider span {
        font: 700 .62rem 'Sora',sans-serif;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--to-muted);
        white-space: nowrap;
    }

/* ───────── features — 2 per row ───────── */
.to-feats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
    margin-top: auto;
}

.to-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 9px;
    border-radius: 10px;
    background: var(--to-feat-bg);
    min-width: 0;
    text-align: left;
}

.to-feat-ic {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6,182,212,.12);
    color: #0891b2;
}

    .to-feat-ic svg {
        width: 14px;
        height: 14px;
    }

[data-bs-theme="dark"] .to-feat-ic {
    background: rgba(34,211,238,.14);
    color: #22d3ee;
}

.to-feat-label {
    flex: 1;
    min-width: 0;
    font-size: .76rem;
    font-weight: 600;
    color: var(--to-ink);
    line-height: 1.2;
}

.to-feat-badge {
    font: 800 .72rem 'Sora',sans-serif;
    padding: 2px 8px;
    border-radius: 50px;
    white-space: nowrap;
}

.to-b-teal {
    background: rgba(6,182,212,.12);
    color: #0891b2;
}

.to-b-violet {
    background: rgba(124,58,237,.12);
    color: #7c3aed;
}

.to-b-green {
    background: rgba(16,185,129,.12);
    color: #059669;
}

.to-b-amber {
    background: rgba(245,158,11,.12);
    color: #d97706;
}

.to-b-blue {
    background: rgba(37,99,235,.12);
    color: #2563eb;
}

[data-bs-theme="dark"] .to-b-teal {
    background: rgba(34,211,238,.14);
    color: #22d3ee;
}

[data-bs-theme="dark"] .to-b-violet {
    background: rgba(167,139,250,.16);
    color: #a78bfa;
}

[data-bs-theme="dark"] .to-b-green {
    background: rgba(52,211,153,.14);
    color: #34d399;
}

[data-bs-theme="dark"] .to-b-amber {
    background: rgba(251,191,36,.14);
    color: #fbbf24;
}

[data-bs-theme="dark"] .to-b-blue {
    background: rgba(96,165,250,.16);
    color: #60a5fa;
}

/* ───────── corporate — green circular ticks, 2 per row ───────── */
.to-checks {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 9px 12px;
    margin-top: auto;
}

.to-check {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .79rem;
    font-weight: 600;
    color: var(--to-ink);
    text-align: left;
}

.to-tick {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    box-shadow: 0 2px 7px rgba(34,197,94,.45);
}

    .to-tick svg {
        width: 11px;
        height: 11px;
        color: #fff;
    }

/* ───────── responsive ───────── */
@media(max-width:991px) {
    .to-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .to-card--popular {
        transform: none;
    }

        .to-card--popular:hover {
            transform: translateY(-6px);
        }
}

@media(max-width:576px) {
    .to-inner, .to-card--popular .to-inner {
        padding: 32px 16px 18px;
    }

    .to-now, .to-card--popular .to-now {
        font-size: 1.65rem;
    }

    .to-feat-label {
        font-size: .72rem;
    }
}

@media(prefers-reduced-motion:reduce) {
    .sh-rule i, .to-off, .to-off::after {
        animation: none;
    }

    .to-card, .to-shine, .to-enroll, .to-enroll::before, .to-inner {
        transition: none;
    }
}

.why-title {
    font-size: clamp(2.2rem,2.5vw,4rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--bc-text);
}

.key-header {
    max-width: 850px;
}

.key-header {
    max-width: 850px;
}

.why-title {
    position: relative;
    display: inline-block;
    font-size: clamp(2.2rem,2.5vw,4rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--bc-text);
    padding-bottom: 18px;
}

    .why-title::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 72px;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient( 90deg, #26d3e4, #0ea5e9 );
    }

.ios-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}


    .ios-guarantee svg {
        color: greenyellow;
        flex-shrink: 0;
    }

    .ios-guarantee span {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--ios-text-secondary);
    }

/* ════════════════════════════════════════════════════════════
   CERTIFICATION  +  ELIGIBILITY (metallic timeline)
   
════════════════════════════════════════════════════════════ */



/* ── tokens ── */
.cert-x, .elig {
    --ax-ink: #0f1f30;
    --ax-muted: #5a6e80;
    --ax-bd: rgba(15,31,48,.09);
    --ax-grad: linear-gradient(135deg,#06b6d4,#7c3aed);
    --ax-glass: linear-gradient(160deg, rgba(255,255,255,.9), rgba(238,248,255,.7));
    font-family: 'Inter',sans-serif;
}

[data-bs-theme="dark"] .cert-x, [data-bs-theme="dark"] .elig {
    --ax-ink: #e8f4fd;
    --ax-muted: #94a3b8;
    --ax-bd: rgba(255,255,255,.08);
    --ax-glass: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}

/* ════════ CERTIFICATION ════════ */
.cert-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0,1fr) 350px;
    gap: 34px;
    align-items: center;
    padding: 30px 32px;
    border-radius: 15px;
    overflow: hidden;
    /*    backdrop-filter: blur(16px) saturate(160%);*/
    -webkit-backdrop-filter: blur(16px) saturate(160%);
}

[data-bs-theme="dark"] .cert-card {
    box-shadow: 0 16px 40px -20px rgba(0,0,0,.55);
}

    /*.cert-card::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    pointer-events: none;*/
    /*    background: radial-gradient(circle, rgba(34,211,238,.16), transparent 70%);*/
    /*}*/

    [data-bs-theme="dark"] .cert-card::after {
        background: radial-gradient(circle, rgba(34,211,238,.12), transparent 70%);
    }

/* auto-styles whatever cert.Value contains */
.cert-body {
    position: relative;
    z-index: 1;
}

    .cert-body h2, .cert-body h3 {
        font: 800 1.2rem 'Sora',sans-serif;
        color: var(--ax-ink);
        letter-spacing: -.3px;
        margin: 0 0 .55rem;
    }

    .cert-body h2 {
        font-size: 1.34rem;
    }

    .cert-body p {
        color: var(--ax-muted);
        font-size: .92rem;
        line-height: 1.65;
        margin: 0 0 1rem;
    }

    .cert-body ul {
        list-style: none;
        padding: 0;
        margin: 0 0 .5rem;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .cert-body li {
        position: relative;
        padding-left: 28px;
        color: var(--ax-ink);
        font-size: .9rem;
        line-height: 1.5;
    }

        .cert-body li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 1px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--ax-grad);
            box-shadow: 0 3px 8px rgba(8,145,178,.35);
        }

        .cert-body li::after {
            content: "";
            position: absolute;
            left: 6px;
            top: 4px;
            width: 4px;
            height: 8px;
            border: solid #fff;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

/* certificate image — premium frame */
.cert-figure {
    position: relative;
    text-align: center;
}

    .cert-figure img {
        width: 100%;
        border-radius: 14px;
        display: block;
        box-shadow: 0 20px 44px -18px rgba(8,145,178,.45);
        transition: transform .5s cubic-bezier(.23,1,.32,1);
    }

    .cert-figure:hover img {
        transform: rotate(2deg) scale(1.02);
    }

.cert-chip {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font: 700 .66rem 'Sora',sans-serif;
    letter-spacing: .04em;
    padding: 5px 12px;
    border-radius: 50px;
    color: #fff;
    background: var(--ax-grad);
    box-shadow: 0 6px 16px rgba(124,58,237,.35);
    white-space: nowrap;
}

    .cert-chip svg {
        width: 13px;
        height: 13px;
    }


/* body card */
.elig-tl-body {
    background: var(--ax-glass);
    border: 1px solid var(--ax-bd);
    border-radius: 14px;
    padding: 13px 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.elig-tl-item:hover .elig-tl-body {
    transform: translateX(4px);
    border-color: rgba(8,145,178,.35);
    box-shadow: 0 12px 26px -16px rgba(8,145,178,.35);
}

.elig-tl-title {
    font: 700 1rem 'Sora',sans-serif;
    color: var(--ax-ink);
    margin: 0 0 3px;
}

.elig-tl-desc {
    font-size: .85rem;
    color: var(--ax-muted);
    line-height: 1.55;
    margin: 0;
}

/* ════════ responsive ════════ */
@media(max-width:767px) {
    .cert-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 20px;
    }

    .cert-figure {
        order: -1;
        max-width: 340px;
        margin: 0 auto;
    }
}

@media(max-width:576px) {
    .elig-tl-item {
        padding-left: 50px;
    }

    .elig-tl-dot {
        width: 34px;
        height: 34px;
    }

    .elig-tl-item:not(:last-child)::before {
        left: 16px;
    }

    .elig-tl-item:not(:last-child)::after {
        left: 15px;
    }
}

@media(prefers-reduced-motion:reduce) {
    .sh-rule i, .elig-tl-item, .elig-tl-item::after, .elig-tl-item:first-child .elig-tl-dot {
        animation: none;
    }

    .cert-figure img, .elig-tl-body {
        transition: none;
    }
}

/* tokens */
.cert-x {
    --ax-ink: #0f1f30;
    --ax-muted: #5a6e80;
    --ax-bd: rgba(15,31,48,.09);
    --ax-grad: linear-gradient(135deg,#06b6d4,#7c3aed);
    --ax-glass: linear-gradient(160deg, rgba(255,255,255,.9), rgba(238,248,255,.7));
    font-family: 'Inter',sans-serif;
}

[data-bs-theme="dark"] .cert-x {
    --ax-ink: #e8f4fd;
    --ax-muted: #94a3b8;
    --ax-bd: rgba(255,255,255,.08);
    --ax-glass: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}

.cert-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 38px;
    align-items: center;
    padding: 34px 36px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--ax-glass);
    border: 1px solid var(--ax-bd);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    box-shadow: 0 16px 40px -20px rgba(15,31,48,.25);
}

[data-bs-theme="dark"] .cert-card {
    box-shadow: 0 16px 40px -20px rgba(0,0,0,.55);
}

.cert-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 2;
    background: linear-gradient(90deg,#06b6d4,#3b82f6,#7c3aed);
}

.cert-card::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(34,211,228,.16), transparent 70%);
}

[data-bs-theme="dark"] .cert-card::after {
    background: radial-gradient(circle, rgba(34,211,228,.12), transparent 70%);
}

.cert-body {
    position: relative;
    z-index: 1;
}

    .cert-body h2, .cert-body h3 {
        font: 800 1.2rem 'Sora',sans-serif;
        color: var(--ax-ink);
        letter-spacing: -.3px;
        margin: 0 0 .55rem;
    }

    .cert-body h2 {
        font-size: 1.34rem;
    }

    .cert-body p {
        color: var(--ax-muted);
        font-size: .92rem;
        line-height: 1.65;
        margin: 0 0 1rem;
    }

    .cert-body ul {
        list-style: none;
        padding: 0;
        margin: 0 0 .5rem;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .cert-body li {
        position: relative;
        padding-left: 28px;
        color: var(--ax-ink);
        font-size: .9rem;
        line-height: 1.5;
    }

        .cert-body li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 1px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--ax-grad);
            box-shadow: 0 3px 8px rgba(8,145,178,.35);
        }

        .cert-body li::after {
            content: "";
            position: absolute;
            left: 6px;
            top: 4px;
            width: 4px;
            height: 8px;
            border: solid #fff;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

.cert-figure {
    position: relative;
    text-align: center;
}

    .cert-figure img {
        width: 100%;
        border-radius: 14px;
        display: block;
        box-shadow: 0 20px 44px -18px rgba(8,145,178,.45);
        transition: transform .5s cubic-bezier(.23,1,.32,1);
    }

    .cert-figure:hover img {
        transform: rotate(2deg) scale(1.02);
    }

.cert-chip {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font: 700 .66rem 'Sora',sans-serif;
    letter-spacing: .04em;
    padding: 5px 12px;
    border-radius: 50px;
    color: #fff;
    background: var(--ax-grad);
    box-shadow: 0 6px 16px rgba(124,58,237,.35);
    white-space: nowrap;
}

    .cert-chip svg {
        width: 13px;
        height: 13px;
    }

@media(max-width:767px) {
    .cert-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 20px;
    }

    .cert-figure {
        order: -1;
        max-width: 340px;
        margin: 0 auto;
    }
}
/* tokens */
/*.elig {
    --ax-ink: #0f1f30;
    --ax-muted: #5a6e80;
    --ax-bd: rgba(15,31,48,.09);
    --ax-grad: linear-gradient(135deg,#06b6d4,#7c3aed);
    --ax-glass: linear-gradient(160deg, rgba(255,255,255,.9), rgba(238,248,255,.7));
    font-family: 'Inter',sans-serif;
    max-width: 760px;
    margin: 0 auto;
}

[data-bs-theme="dark"] .elig {
    --ax-ink: #e8f4fd;
    --ax-muted: #94a3b8;
    --ax-bd: rgba(255,255,255,.08);
    --ax-glass: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}*/

/* prerequisites callout */
/*.elig-pre {
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 16px;
    margin-bottom: 28px;
    background: var(--ax-glass);
    border: 1px solid var(--ax-bd);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 28px -16px rgba(15,31,48,.22);
}

.elig-pre-ic {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--ax-grad);
    box-shadow: 0 6px 16px rgba(8,145,178,.4);
}

    .elig-pre-ic svg {
        width: 20px;
        height: 20px;
    }

.elig-pre-k {
    display: block;
    font: 800 .64rem 'Sora',sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 3px;
    background: var(--ax-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.elig-pre-t {
    margin: 0;
    font-size: .9rem;
    line-height: 1.6;
    color: var(--ax-ink);
}*/

/* timeline */
/*.elig-tl {
    position: relative;
}

.elig-tl-item {
    position: relative;
    padding: 0 0 26px 56px;
    animation: elig-in .6s ease both;
}

    .elig-tl-item:last-child {
        padding-bottom: 0;
    }

    .elig-tl-item:nth-child(2) {
        animation-delay: .08s;
    }

    .elig-tl-item:nth-child(3) {
        animation-delay: .16s;
    }

    .elig-tl-item:nth-child(4) {
        animation-delay: .24s;
    }

    .elig-tl-item:nth-child(5) {
        animation-delay: .32s;
    }

@keyframes elig-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.elig-tl-item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 20px;
    height: 100%;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(34,211,228,.55), rgba(124,58,237,.45));
}

.elig-tl-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 17px;
    top: 20px;
    height: 100%;
    width: 4px;
    border-radius: 4px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(34,211,228,.9), transparent);
    background-size: 100% 42px;
    background-repeat: no-repeat;
    animation: elig-flow 2.8s linear infinite;
}

@keyframes elig-flow {
    0% {
        background-position: 0 -42px;
    }

    100% {
        background-position: 0 calc(100% + 42px);
    }
}

.elig-tl-dot {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0e7490;
    background: linear-gradient(145deg,#f4f9fb,#aebfc8);
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: inset 0 1px 2px rgba(255,255,255,.9), inset 0 -3px 5px rgba(8,80,100,.18), 0 5px 14px rgba(8,145,178,.28);
}

    .elig-tl-dot svg {
        width: 17px;
        height: 17px;
    }

[data-bs-theme="dark"] .elig-tl-dot {
    color: #22d3ee;
    background: linear-gradient(145deg,#33444f,#0e1a24);
    border-color: rgba(255,255,255,.12);
    box-shadow: inset 0 1px 2px rgba(255,255,255,.15), inset 0 -3px 6px rgba(0,0,0,.5), 0 5px 14px rgba(34,211,228,.28);
}

.elig-tl-item:first-child .elig-tl-dot {
    background: var(--ax-grad);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 16px rgba(8,145,178,.45);
    animation: elig-pulse 2.6s ease-in-out infinite;
}

@keyframes elig-pulse {
    0%,100% {
        box-shadow: 0 5px 16px rgba(8,145,178,.4);
    }

    50% {
        box-shadow: 0 8px 24px rgba(8,145,178,.65);
    }
}

.elig-tl-body {
    background: var(--ax-glass);
    border: 1px solid var(--ax-bd);
    border-radius: 14px;
    width:150px;
    padding: 13px 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.elig-tl-item:hover .elig-tl-body {
    transform: translateX(4px);
    border-color: rgba(8,145,178,.35);
    box-shadow: 0 12px 26px -16px rgba(8,145,178,.35);
}

.elig-tl-title {
    font: 700 1rem 'Sora',sans-serif;
    color: var(--ax-ink);
    margin: 0 0 3px;
}

.elig-tl-desc {
    font-size: .85rem;
    color: var(--ax-muted);
    line-height: 1.55;
    margin: 0;
}

@media(max-width:576px) {
    .elig-tl-item {
        padding-left: 50px;
    }

    .elig-tl-dot {
        width: 34px;
        height: 34px;
    }

    .elig-tl-item:not(:last-child)::before {
        left: 16px;
    }

    .elig-tl-item:not(:last-child)::after {
        left: 15px;
    }
}

@media(prefers-reduced-motion:reduce) {
    .elig-tl-item, .elig-tl-item::after, .elig-tl-item:first-child .elig-tl-dot {
        animation: none;
    }

    .elig-tl-body {
        transition: none;
    }
}*/
/* ════════════════════════════════════════════════════════════
   CAREER / SALARY — switchable tabs · themed · light + dark
   Keeps your .devsal-* class names. Uses [data-bs-theme="dark"].
════════════════════════════════════════════════════════════ */
.devsal-career-container {
    --ds-ink: #0f1f30;
    --ds-muted: #5a6e80;
    --ds-bd: rgba(15,31,48,.09);
    --ds-grad: linear-gradient(135deg,#06b6d4,#7c3aed);
    --ds-glass: linear-gradient(160deg, rgba(255,255,255,.9), rgba(238,248,255,.7));
    --ds-tab: rgba(15,31,48,.05);
    font-family: 'Inter','Segoe UI',sans-serif;
    width: 100%;
    margin: 0 auto;
    padding: 6px;
}

[data-bs-theme="dark"] .devsal-career-container {
    --ds-ink: #e8f4fd;
    --ds-muted: #94a3b8;
    --ds-bd: rgba(255,255,255,.08);
    --ds-glass: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    --ds-tab: rgba(255,255,255,.05);
}

/* ── tab bar ── */
.devsal-tab-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

    .devsal-tab-bar::-webkit-scrollbar {
        display: none;
    }

.devsal-tab {
    flex: 1 0 auto;
    min-width: 120px;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    padding: 12px 16px;
    border-radius: 12px;
    font: 600 .86rem 'Sora',sans-serif;
    color: var(--ds-muted);
    background: var(--ds-tab);
    border: 1px solid transparent;
    transition: transform .25s ease, color .25s ease, box-shadow .25s ease, background .25s ease;
}

    .devsal-tab:hover {
        transform: translateY(-2px);
        color: var(--ds-ink);
        border-color: var(--ds-bd);
    }

    .devsal-tab.active {
        color: #fff;
        background: var(--ds-grad);
        box-shadow: 0 8px 20px -6px rgba(8,145,178,.5);
        border-color: transparent;
    }

/* ── tab content ── */
.devsal-tab-content {
    display: none;
}

    .devsal-tab-content.active {
        display: block;
        animation: devsal-fade .4s cubic-bezier(.16,1,.3,1);
    }

@keyframes devsal-fade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* ── stats ── */
.devsal-stats-box {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.devsal-stat-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
    border-radius: 14px;
    text-align: center;
    background: var(--ds-glass);
    border: 1px solid var(--ds-bd);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 22px -14px rgba(15,31,48,.22);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .devsal-stat-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--ds-grad);
        opacity: 0;
        transition: opacity .3s;
    }

    .devsal-stat-item:hover {
        transform: translateY(-4px);
        border-color: rgba(8,145,178,.3);
        box-shadow: 0 16px 30px -16px rgba(8,145,178,.32);
    }

        .devsal-stat-item:hover::before {
            opacity: 1;
        }

.devsal-stat-value {
    font: 800 1.45rem 'Sora',sans-serif;
    letter-spacing: -.5px;
    background: var(--ds-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.devsal-stat-label {
    margin-top: 5px;
    font-size: .75rem;
    font-weight: 500;
    color: var(--ds-muted);
}

/* ── chart ── */
.devsal-chart-container {
    width: 100%;
    border-radius: 16px;
    padding: 18px 18px 12px;
    background: var(--ds-glass);
    border: 1px solid var(--ds-bd);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 28px -16px rgba(15,31,48,.2);
}

.devsal-chart-title {
    text-align: center;
    margin-bottom: 10px;
    font: 700 1rem 'Sora',sans-serif;
    background: var(--ds-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.devsal-chart-wrapper {
    height: 300px;
    position: relative;
}
/*.elig {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}*/
/* ── responsive ── */
@media(max-width:768px) {
    .devsal-stats-box {
        grid-template-columns: repeat(2,1fr);
    }

    .devsal-tab {
        min-width: 100px;
        padding: 10px 12px;
        font-size: .82rem;
    }

    .devsal-chart-wrapper {
        height: 260px;
    }
}

@media(max-width:480px) {
    .devsal-stats-box {
        grid-template-columns: 1fr 1fr;
    }

    .devsal-tab {
        min-width: 84px;
        font-size: .78rem;
        padding: 9px 8px;
    }

    .devsal-stat-value {
        font-size: 1.25rem;
    }

    .devsal-chart-wrapper {
        height: 230px;
    }
}

@media(prefers-reduced-motion:reduce) {
    .devsal-tab-content, .devsal-tab, .devsal-stat-item {
        animation: none;
        transition: none;
    }
}

.prereq {
    --pq-ink: #0f1f30;
    --pq-muted: #5a6e80;
    --pq-bd: rgba(15,31,48,.09);
    --pq-grad: linear-gradient(135deg,#06b6d4,#7c3aed);
    --pq-glass: linear-gradient(160deg, rgba(255,255,255,.9), rgba(238,248,255,.7));
    font-family: 'Inter',sans-serif;
}

[data-bs-theme="dark"] .prereq {
    --pq-ink: #e8f4fd;
    --pq-muted: #94a3b8;
    --pq-bd: rgba(255,255,255,.08);
    --pq-glass: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}

.prereq-lead {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 14px;
    margin-bottom: 16px;
    background: var(--pq-glass);
    border: 1px solid var(--pq-bd);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    box-shadow: 0 14px 34px -22px rgba(15,31,48,.25);
}

[data-bs-theme="dark"] .prereq-lead {
    box-shadow: 0 14px 34px -22px rgba(0,0,0,.55);
}

.prereq-lead::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,#06b6d4,#3b82f6,#7c3aed);
}

.prereq-lead::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -80px;
    top: -90px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(34,211,228,.16), transparent 70%);
}

[data-bs-theme="dark"] .prereq-lead::after {
    background: radial-gradient(circle, rgba(34,211,228,.12), transparent 70%);
}

.prereq-lead-ic {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--pq-grad);
    box-shadow: 0 10px 22px rgba(8,145,178,.42);
}

.prereq-lead-txt {
    position: relative;
    z-index: 1;
}

.prereq-lead-h {
    font: 700 1rem 'Sora',sans-serif;
    letter-spacing: -.3px;
    color: var(--pq-ink);
    margin: 0 0 3px;
}

.prereq-lead-p {
    font-size: .88rem;
    line-height: 1.55;
    color: var(--pq-muted);
    margin: 0;
}

.prereq-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
}

.prereq-item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 18px;
    border-radius: 12px;
    background: var(--pq-glass);
    border: 1px solid var(--pq-bd);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 26px -16px rgba(15,31,48,.2);
    transition: transform .35s cubic-bezier(.23,1,.32,1), border-color .3s ease, box-shadow .3s ease;
}

    .prereq-item:hover {
        transform: translateY(-4px);
        border-color: rgba(8,145,178,.32);
        box-shadow: 0 18px 34px -18px rgba(8,145,178,.32);
    }

    .prereq-item::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(125deg,transparent 38%,rgba(255,255,255,.32) 50%,transparent 62%);
        transform: translateX(-130%);
        transition: transform .8s ease;
    }

    .prereq-item:hover::after {
        transform: translateX(130%);
    }

[data-bs-theme="dark"] .prereq-item::after {
    background: linear-gradient(125deg,transparent 38%,rgba(255,255,255,.07) 50%,transparent 62%);
}

.prereq-ic {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--pq-grad);
    box-shadow: 0 7px 16px rgba(8,145,178,.35);
    transition: transform .3s ease;
}

.prereq-item:hover .prereq-ic {
    transform: scale(1.06) rotate(-4deg);
}

.prereq-item-txt {
    flex: 1;
    min-width: 0;
}

.prereq-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 3px;
}

.prereq-title {
    font: 700 .98rem 'Sora',sans-serif;
    color: var(--pq-ink);
    margin: 0;
}

.prereq-desc {
    font-size: .82rem;
    line-height: 1.5;
    color: var(--pq-muted);
    margin: 0;
}

.prereq-tag {
    font: 800 .56rem 'Sora',sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 50px;
}

.prereq-tag--req {
    background: rgba(6,182,212,.12);
    color: #0891b2;
}

.prereq-tag--rec {
    background: rgba(124,58,237,.12);
    color: #7c3aed;
}

.prereq-tag--opt {
    background: rgba(100,116,139,.14);
    color: #64748b;
}

[data-bs-theme="dark"] .prereq-tag--req {
    background: rgba(34,211,228,.16);
    color: #22d3ee;
}

[data-bs-theme="dark"] .prereq-tag--rec {
    background: rgba(167,139,250,.18);
    color: #a78bfa;
}

[data-bs-theme="dark"] .prereq-tag--opt {
    background: rgba(148,163,184,.18);
    color: #cbd5e1;
}

.prereq-lead-ic::before, .prereq-ic::before {
    content: "";
    display: block;
    background: #fff;
    width: 20px;
    height: 20px;
    -webkit-mask: center/contain no-repeat var(--pq-i);
    mask: center/contain no-repeat var(--pq-i);
}

.prereq-lead-ic::before {
    width: 25px;
    height: 25px;
}

.prereq-i-spark {
    --pq-i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3-1.9 5.8a2 2 0 0 1-1.3 1.3L3 12l5.8 1.9a2 2 0 0 1 1.3 1.3L12 21l1.9-5.8a2 2 0 0 1 1.3-1.3L21 12l-5.8-1.9a2 2 0 0 1-1.3-1.3z'/%3E%3C/svg%3E");
}

.prereq-i-code {
    --pq-i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='16 18 22 12 16 6'/%3E%3Cpolyline points='8 6 2 12 8 18'/%3E%3C/svg%3E");
}

.prereq-i-device {
    --pq-i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='14' x='2' y='3' rx='2'/%3E%3Cline x1='8' x2='16' y1='21' y2='21'/%3E%3Cline x1='12' x2='12' y1='17' y2='21'/%3E%3C/svg%3E");
}

.prereq-i-bulb {
    --pq-i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5'/%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3C/svg%3E");
}

@media(max-width:860px) {
    .prereq-grid {
        grid-template-columns: 1fr;
    }

    .prereq-lead {
        flex-direction: column;
        text-align: center;
    }
}

@media(prefers-reduced-motion:reduce) {
    .prereq-item, .prereq-item::after, .prereq-ic {
        transition: none;
    }
} 
