.hero {
    min-height: 80vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 7vw;
    position: relative;
    overflow: hidden;
}

.hero-layer1 {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: var(--bxsoft);
    pointer-events: none;
}

.hero-layer2 {
    position: absolute;
    right: -180px;
    top: 50%;
    transform: translateY(-50%);
    width: 860px;
    height: 860px;
    border-radius: 50%;
    border: 1px solid var(--line);
    pointer-events: none;
}

.hero-layer3 {
    position: absolute;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
    width: 1020px;
    height: 1020px;
    border-radius: 50%;
    border: 1px solid var(--line);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    gap: 5rem;
    align-items: center
}

.hero-p {
    font-size: .88rem;
    color: var(--ink2);
    line-height: 1.9;
    max-width: 400px;
    margin-bottom: 2.2rem
}

.hero-btns {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem
}

.hero-metrics {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line)
}

.hero-mnum {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    display: block
}

.hero-mlbl {
    font-size: .65rem;
    color: var(--ink3);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: .2rem;
    display: block
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-card {
    background: var(--bxsoft);
    border-radius: 16px;
    padding: 1.5rem 1.8rem;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: transform .25s, box-shadow .25s, background .25s;
    cursor: default;
}

.hero-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(7, 18, 46, .08);
    background: #fff
}

.hero-cicon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--blue);
    flex-shrink: 0;
    transition: background .25s;
    border: 1px solid var(--line);
}

.hero-card:hover .hero-cicon {
    background: var(--blue);
    color: #fff;
    border-color: transparent
}

.hero-ct {
    font-size: .85rem;
    font-weight: 700;
    color: var(--navy)
}

.hero-cs {
    font-size: .72rem;
    color: var(--ink3);
    margin-top: .15rem
}

.hero-cv {
    margin-left: auto;
    font-size: .78rem;
    font-weight: 700;
    color: var(--blue);
    white-space: nowrap
}

.trust-faces {
    display: flex;
}

.trust-face {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2.5px solid var(--bxsoft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
    flex-shrink: 0;
}

.trust-face:first-child {
    margin-left: 0;
}

.trust-face-navy {
    background: var(--navy);
}

.trust-face-blue {
    background: var(--blue);
}

.trust-face-cyan {
    background: #0891b2;
}

.trust-face-purple {
    background: #7c3aed;
}

.hero-trust-text {
    font-size: .8rem;
    color: var(--ink3);
    font-weight: 500;
}

.hero-trust-text strong {
    color: var(--navy);
}

.ticker {
    background: var(--blue);
    padding: .8rem 0;
    overflow: hidden;
}

.ticker-t {
    display: flex;
    animation: roll 26s linear infinite;
    width: max-content;
}

.ticker-i {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    padding: 0 2rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    white-space: nowrap;
}

.ticker-i i {
    color: rgba(255, 255, 255, .4);
    font-size: .38rem;
}

@keyframes roll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.exam-feature {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 1.5rem;
}

.ef-item {
    padding: 2.2rem 1.8rem;
    border-right: 1px solid var(--line);
    position: relative;
    cursor: default;
    transition: all .25s;
    background: #fff;
}

.ef-item:last-child {
    border-right: none;
}

.ef-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.ef-item:hover {
    background: var(--bxsoft);
}

.ef-item:hover::after {
    transform: scaleX(1);
}

.ef-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--bxsoft);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.4rem;
    transition: all .25s;
}

.ef-item:hover .ef-icon {
    background: var(--blue);
    color: #fff;
}

.ef-name {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--navy);
    margin-bottom: .4rem;
}

.ef-desc {
    font-size: .8rem;
    color: var(--ink2);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.ef-gain {
    font-size: .72rem;
    font-weight: 700;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: .35rem;
}

.process-line {
    position: absolute;
    top: 34px;
    left: calc(16.67% + 34px);
    right: calc(16.67% + 34px);
    height: 1px;
    background: var(--line);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1.8rem;
}

.process-icon-navy {
    background: var(--navy);
    box-shadow: 0 0 0 7px var(--bxsoft);
}

.process-icon-blue {
    background: var(--blue);
    box-shadow: 0 0 0 7px var(--bxsoft), 0 8px 28px rgba(18, 154, 203, .3);
}

.process-icon-navy2 {
    background: var(--navy2);
    box-shadow: 0 0 0 7px var(--bxsoft);
}

.process-title {
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .5rem;
}

.process-desc {
    font-size: .85rem;
    color: var(--ink2);
    line-height: 1.75;
}

.plans-sub {
    font-size: .9rem;
    color: var(--ink2);
    max-width: 460px;
    line-height: 1.8;
}

.crs-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all .28s;
}

.crs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(7, 18, 46, .12);
    border-color: transparent;
}

.crs-head {
    padding: 2.2rem 2.2rem 1.8rem;
    position: relative;
    overflow: hidden;
}

.crs-head::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}

.crs-head::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 20px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.crs-head-k {
    background: linear-gradient(145deg, var(--navy), var(--navy2));
}

.crs-head-a {
    background: linear-gradient(145deg, var(--navy), var(--blue));
}

.crs-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: .9rem;
    position: relative;
    z-index: 1;
}

.crs-name {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -.05em;
    color: #fff;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.crs-duration {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: .4rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: .35rem;
}

.crs-body {
    background: #fff;
    padding: 2rem 2.2rem;
}

.crs-desc {
    font-size: .875rem;
    color: var(--ink2);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.crs-includes {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.inc-row {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .82rem;
    color: var(--ink2);
    font-weight: 500;
}

.inc-row i {
    color: var(--blue);
    flex-shrink: 0;
    font-size: .9rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 1.4rem;
}

.price-num {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -.06em;
    color: var(--navy);
}

.price-num small {
    font-size: .8rem;
    font-weight: 400;
    color: var(--ink3);
    letter-spacing: 0;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    background: var(--blue);
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .25rem .7rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.why-h {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -.05em;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.why-p {
    font-size: .9rem;
    color: var(--ink2);
    line-height: 1.85;
    margin-bottom: 1.8rem;
}

.why-panel {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

.wp-bg-navy {
    background: var(--navy);
}

.wp-bg-blue {
    background: linear-gradient(135deg, var(--navy), var(--blue));
}

.wp-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.wp-num {
    position: absolute;
    top: .5rem;
    left: 1.5rem;
    font-size: 9rem;
    font-weight: 900;
    letter-spacing: -.08em;
    color: rgba(255, 255, 255, .05);
    line-height: 1;
    user-select: none;
}

.wp-rows {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.wp-row {
    display: flex;
    align-items: center;
    gap: .85rem;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: .85rem 1.1rem;
    transition: background .2s;
}

.wp-row:hover {
    background: rgba(255, 255, 255, .12);
}

.wp-ic {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    flex-shrink: 0;
}

.wp-t {
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
}

.wp-s {
    font-size: .68rem;
    color: rgba(255, 255, 255, .42);
    margin-top: .05rem;
}

.score-bars {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.score-bar-item {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.score-bar-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.score-bar-name {
    font-size: .73rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 500;
}

.score-bar-value {
    font-size: .73rem;
    color: #c5d8ed;
    font-weight: 700;
}

.sbar-bg {
    height: 5px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .12);
    overflow: hidden;
}

.sbar {
    height: 5px;
    border-radius: 99px;
    background: linear-gradient(90deg, #bedbff, #a0aad9);
}

.results-note {
    font-size: .85rem;
    color: var(--ink3);
    max-width: 260px;
    text-align: right;
    margin-bottom: 0;
}

.rscroll {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--bsoft) transparent;
    padding-bottom: .5rem;
}

.rscroll::-webkit-scrollbar {
    height: 4px;
}

.rscroll::-webkit-scrollbar-thumb {
    background: var(--bsoft);
    border-radius: 2px;
}

.rrow {
    display: flex;
    gap: 1rem;
    width: max-content;
    padding: .25rem .25rem .25rem 0;
}

.rcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.8rem;
    width: 310px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all .25s;
}

.rcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--blue));
    opacity: 0;
    transition: opacity .25s;
}

.rcard:hover {
    box-shadow: 0 16px 48px rgba(7, 18, 46, .1);
    transform: translateY(-4px);
    border-color: transparent;
}

.rcard:hover::before {
    opacity: 1;
}

.rcard-name {
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .25rem;
    margin-top: .75rem;
}

.rcard-exam {
    font-size: .7rem;
    color: var(--ink3);
    margin-bottom: .75rem;
}

.rcard-text {
    font-size: .76rem;
    color: var(--ink2);
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: .75rem;
}

.rav {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.rav-sm {
    width: 38px;
    height: 38px;
    font-size: .82rem;
}

.rav-navy-grad {
    background: linear-gradient(135deg, var(--navy), var(--navy2));
}

.rav-blue-grad {
    background: linear-gradient(135deg, var(--blue), var(--blue2));
}

.rav-mixed-grad {
    background: linear-gradient(135deg, var(--navy2), var(--blue));
}

.rav-cyan-grad {
    background: linear-gradient(135deg, #0891b2, var(--blue));
}

.sbadge {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-weight: 800;
    font-size: .95rem;
    padding: .25rem 1rem;
    border-radius: 4px;
}

.tcard {
    background: rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .09);
    border-radius: 14px;
    padding: 2rem;
    transition: all .25s;
    display: flex;
    flex-direction: column;
}

.tcard:hover {
    background: rgba(18, 154, 203, .15);
    border-color: rgba(18, 154, 203, .35);
    transform: translateY(-3px);
}

.tcard-q {
    font-family: var(--fa);
    font-size: 2.8rem;
    color: var(--blue2);
    opacity: .4;
    line-height: 1;
    margin-bottom: .6rem;
}

.tcard-stars {
    display: flex;
    gap: .25rem;
    color: #f59e0b;
    font-size: .78rem;
    margin-bottom: .75rem;
}

.tcard-text {
    font-size: .875rem;
    color: rgba(0, 0, 0, .72);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: auto;
}

.tcard-author-name {
    font-weight: 700;
    color: var(--navy);
    font-size: .88rem;
}

.tcard-author-loc {
    font-size: .7rem;
    color: rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    gap: .25rem;
}



.cta-section {
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(18, 154, 203, .3) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-word {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25vw;
    font-weight: 900;
    letter-spacing: -.08em;
    color: rgba(0, 0, 0, .025);
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    line-height: 1;
}

.cta-heading {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -.06em;
    color: #000;
    line-height: 1.05;
    margin-bottom: 1rem;
}

.cta-sub {
    color: rgba(0, 0, 0, .55);
    font-size: 1rem;
    max-width: 460px;
    line-height: 1.85;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}