
.crs-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.crs-col-main,
.crs-col-side {
    padding: 0 12px;
}

/* Mobile: price card first, content second */
.crs-col-main {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 20px;
    order: 2;
}

.crs-col-side {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 20px;
    order: 1;
}

/* Tablet+: content first, price card second */
@media (min-width:576px) {
    .crs-col-main {
        order: 1;
    }

    .crs-col-side {
        order: 2;
    }
}

/* Desktop: two columns */
@media (min-width:992px) {
    .crs-col-main {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
        padding-bottom: 0;
    }

    .crs-col-side {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        padding-bottom: 0;
    }
}

.crs-pb {
    padding-bottom: .5rem;
}

/* ===== TOOLTIP ===== */
.cc-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
}

.cc-tooltip-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
}

.cc-tooltip-trigger:hover,
.cc-tooltip-trigger:focus-visible {
    color: #111827;
}

.cc-tooltip-text {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: min(250px, 70vw);
    padding: 8px 10px;
    border-radius: 8px;
    background: #111827;
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
    z-index: 20;
}

.cc-tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #111827;
}

.cc-tooltip:hover .cc-tooltip-text,
.cc-tooltip:focus-within .cc-tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* ===== HERO ===== */
.ob {
    width: 100%;
    background: linear-gradient(145deg, #0b1a33 0%, #132744 40%, #1a3358 100%);
    position: relative;
    overflow: hidden;
    contain: layout style paint;
    font-family: var(--font-sans);
}

.ob-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4920f, #fbd000, #f0c040, #fbd000, #d4920f);
    z-index: 5;
}

.ob-inner {
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
}

.ob-left {
    flex: 1;
    padding: 32px 40px 34px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.ob-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ob-ceu {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(251, 208, 0, .06);
    border: 1px solid rgba(251, 208, 0, .18);
    border-radius: 100px;
    font-size: 10.5px;
    font-weight: 700;
    color: #fbd000;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.ob-ceu svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.ob-heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ob-heading h1 {
    font-size: clamp(1.55rem, 2.8vw, 2.15rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.6px;
    margin: 0;
}

.ob-heading h1 .ob-hl {
    background: linear-gradient(135deg, #fbd000, #f0c040);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fbd000;
}

.ob-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ob-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 10px;
    transition: background .15s ease, border-color .15s ease;
}

.ob-feat:hover {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .08);
}

.ob-feat-ico {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ob-feat-ico svg {
    width: 18px;
    height: 18px;
}

.ob-feat-ico.green {
    background: rgba(76, 175, 133, .1);
    border: 1px solid rgba(76, 175, 133, .15);
}

.ob-feat-ico.blue {
    background: rgba(91, 155, 213, .1);
    border: 1px solid rgba(91, 155, 213, .15);
}

.ob-feat-ico.gold {
    background: rgba(251, 208, 0, .08);
    border: 1px solid rgba(251, 208, 0, .15);
}

.ob-feat-ico.purple {
    background: rgba(167, 139, 250, .1);
    border: 1px solid rgba(167, 139, 250, .15);
}

.ob-feat-txt {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .82);
    font-weight: 500;
    line-height: 1.35;
}

.ob-feat-txt strong {
    color: #fff;
    font-weight: 700;
    display: block;
    font-size: 13px;
    margin-bottom: 1px;
}

.banner-requirement {
    font-size: 14px;
    padding: 10px;
    background: rgba(251, 191, 36, .15);
    border: 2px solid rgba(251, 191, 36, .4);
    border-radius: 10px;
    line-height: 1.6;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

@media (max-width:960px) {
    .ob-inner {
        flex-direction: column;
    }
}

@media (max-width:768px) {
    .banner-requirement {
        font-size: 13px;
        padding: 12px 16px;
    }
}

@media (max-width:600px) {
    .ob-left {
        padding: 20px 16px;
        gap: 16px;
    }

    .ob-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .ob-heading h1 {
        font-size: 1.35rem;
    }

    .ob-features {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .ob-feat {
        padding: 9px 12px;
    }

    .ob-feat-ico {
        width: 32px;
        height: 32px;
        border-radius: 7px;
    }

    .ob-feat-ico svg {
        width: 15px;
        height: 15px;
    }
}

@media (max-width:480px) {
    .banner-requirement {
        font-size: 12px;
        padding: 10px 14px;
        line-height: 1.5;
    }
}

@media (max-width:380px) {
    .ob-heading h1 {
        font-size: 1.2rem;
    }
}

/* ===== COURSE SECTION ===== */
.cc-section {
    width: 100%;
    padding: 56px 0 64px;
    background: #f8f9fb;
    font-family: var(--font-sans);
    contain: layout style paint;
}

.cc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.cc-header {
    text-align: center;
    margin-bottom: 40px;
}

.cc-header-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    background: #eef2ff;
    border: 1px solid #dde3f7;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #4f5d8a;
    letter-spacing: .3px;
    margin-bottom: 14px;
}

.cc-header-tag svg {
    width: 14px;
    height: 14px;
    stroke: #6373a6;
    flex-shrink: 0;
}

.cc-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #111827;
    margin: 0 0 10px;
    letter-spacing: -.5px;
    line-height: 1.2;
}

.cc-title span {
    color: #b45309;
}

/* ===== PRICE CARD ===== */
.cc-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px 22px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04), 0 4px 12px rgba(0, 0, 0, .03);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    contain: layout style;
}

@media (min-width:769px) {
    .cc-card {
        position: sticky;
        top: 20px;
    }
}

.cc-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .07), 0 1px 3px rgba(0, 0, 0, .04);
    transform: translateY(-1px);
}

.cc-card-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 0 0 8px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    z-index: 2;
    line-height: 1;
}

.cc-badge-popular {
    background: linear-gradient(135deg, #fbd000, #e8a317);
    color: #0b1a33;
}

.cc-badge-popular svg {
    width: 11px;
    height: 11px;
    stroke: #0b1a33;
    flex-shrink: 0;
}

.cc-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.cc-card-lang {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: #4b5563;
    line-height: 1;
}

.cc-card-lang svg {
    width: 12px;
    height: 12px;
    stroke: #6b7280;
    flex-shrink: 0;
}

.cc-card-stock {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #15803d;
}

.cc-stock-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #16a34a;
    flex-shrink: 0;
    animation: stockPulse 2s ease-in-out infinite;
}

@keyframes stockPulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.cc-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 12px;
    line-height: 1.3;
    letter-spacing: -.2px;
}

.cc-card-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.ob-price-current-card {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(135deg, #fbd000, #f0c040);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #e8a317;
    display: inline-block;
    line-height: 1;
    letter-spacing: -.5px;
}

.cc-price-compare {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: line-through;
    line-height: 1;
}

.cc-price-save {
    font-size: 11px;
    font-weight: 800;
    background: #dcfce7;
    color: #166534;
    padding: 3px 10px;
    border-radius: 100px;
    line-height: 1.4;
    border: 1px solid #a7f3d0;
}

.cc-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 5px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}

.cc-card-features li>svg {
    width: 14px;
    height: 14px;
    stroke: #15803d;
    flex-shrink: 0;
}

.cc-card-cta-wrap {
    padding: 14px 0 0;
}

.cc-card-btn-link {
    display: block;
    text-decoration: none;
    width: 100%;
}

.cc-card-btn-link:focus-visible {
    outline: 2px solid #0b1a33;
    outline-offset: 3px;
    border-radius: 12px;
}

.cc-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 18px;
    background: linear-gradient(135deg, #fbd000 0%, #e8a317 100%);
    color: #0b1a33;
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(251, 208, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .25);
    transition: background .22s ease, box-shadow .22s ease, transform .22s ease;
    position: relative;
    overflow: hidden;
}

.cc-card-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.cc-card-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
    transform: skewX(-20deg);
    transition: left .55s ease;
    pointer-events: none;
}

.cc-card-btn-link:hover .cc-card-btn::after {
    left: 140%;
}

.cc-card-btn-link:hover .cc-card-btn {
    background: linear-gradient(135deg, #ffe033 0%, #fbd000 100%);
    box-shadow: 0 12px 28px rgba(251, 208, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .3);
    transform: translateY(-1px);
}

.cc-card-tp {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f3f4f6;
}

.cc-card-tp .trustpilot-widget {
    min-height: 24px;
}

@media (max-width:480px) {
    .cc-card {
        padding: 20px 16px 18px;
        border-radius: 12px;
    }

    .cc-card-title {
        font-size: 16px;
    }

    .ob-price-current-card {
        font-size: 22px;
    }

    .cc-card-btn {
        font-size: 12.5px;
        padding: 14px 16px;
    }
}

/* ===== TABS ===== */
.ptabs {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

.ptabs-wrap {
    border: 1px solid #919090;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.ptabs-nav-wrap {
    display: flex;
    border-bottom: 1px solid rgba(234, 234, 234, .51);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.ptabs-nav-wrap::-webkit-scrollbar {
    display: none;
}

.ptabs-btn {
    flex: 1;
    padding: 15px 20px;
    background: #fafafa;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    white-space: nowrap;
    min-width: max-content;
    transition: color .15s, border-color .15s, background .15s;
}

.ptabs-btn:hover {
    background: #f1f5f9;
}

.ptabs-btn[aria-selected="true"] {
    color: #fbd000;
    border-bottom-color: #222;
    background: #142948;
}

.ptabs-btn:focus-visible {
    outline: 2px solid #142948;
    outline-offset: -2px;
}

.ptabs-panel {
    display: none;
    padding: 32px 30px;
}

.ptabs-panel.active {
    display: block;
}

.ptabs-h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 18px;
    line-height: 1.3;
    letter-spacing: -.3px;
}

.ptabs-panel>p {
    font-size: .92rem;
    color: #222;
    line-height: 1.7;
    margin: 0 0 12px;
}

.ptabs-card {
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 14px;
}

.ptabs-card--orange {
    background: #d2e2f3;
    border: 1px solid #8aaefd;
}

.ptabs-card-title {
    font-size: .95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.ptabs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    list-style: none;
    padding: 0;
}

.ptabs-tags li {
    padding: 4px 11px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: .74rem;
    font-weight: 600;
    color: #475569;
}

.ptabs-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.ptabs-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    transition: background .15s ease, border-color .15s ease;
}

.ptabs-check:hover {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.ptabs-ck {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 6px;
    background: #dcfce7;
    margin-top: 2px;
    position: relative;
}

.ptabs-ck::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 4px;
    width: 10px;
    height: 6px;
    border-left: 2px solid #16a34a;
    border-bottom: 2px solid #16a34a;
    transform: rotate(-45deg);
}

.ptabs-check p {
    margin: 0;
    font-size: .86rem;
    color: #334155;
    line-height: 1.5;
}

.ptabs-steps {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 24px;
    margin: 0;
    list-style: none;
}

.ptabs-steps::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: #eaeaea;
}

.ptabs-step {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    position: relative;
}

.ptabs-step-n {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #b45309;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-left: -24px;
}

.ptabs-step-n span {
    font-size: .82rem;
    font-weight: 800;
    color: #fff;
}

.ptabs-step-body {
    flex: 1;
}

.ptabs-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.ptabs-ul {
    padding-left: 16px;
    margin: 0 0 10px;
}

.ptabs-ul li {
    font-size: .86rem;
    color: #222;
    line-height: 1.6;
    margin-bottom: 5px;
}

.ptabs-provider-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0 0;
    list-style: none;
    padding: 0;
}

.ptabs-provider-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    transition: background .15s ease, border-color .15s ease;
}

.ptabs-provider-card:hover {
    background: #fef9ee;
    border-color: #fde68a;
}

.ptabs-provider-ico {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ptabs-provider-ico svg {
    width: 20px;
    height: 20px;
}

.ptabs-provider-ico.gold {
    color: #b45309;
    background: rgba(245, 158, 11, .12);
    border: 1px solid rgba(245, 158, 11, .22);
}

.ptabs-provider-ico.green {
    color: #15803d;
    background: rgba(34, 197, 94, .12);
    border: 1px solid rgba(34, 197, 94, .22);
}

.ptabs-provider-ico.blue {
    color: #1d4ed8;
    background: rgba(37, 99, 235, .1);
    border: 1px solid rgba(37, 99, 235, .2);
}

.ptabs-provider-ico.purple {
    color: #6d28d9;
    background: rgba(124, 58, 237, .1);
    border: 1px solid rgba(124, 58, 237, .2);
}

.ptabs-provider-ico.orange {
    color: #c2410c;
    background: rgba(249, 115, 22, .1);
    border: 1px solid rgba(249, 115, 22, .2);
}

.ptabs-provider-body {
    flex: 1;
    min-width: 0;
}

.ptabs-provider-card strong {
    display: block;
    font-size: .86rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

.ptabs-provider-card span {
    font-size: .82rem;
    color: #222;
    line-height: 1.4;
}

.ptabs-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 6px;
}

.ptabs-stars-label {
    font-size: .74rem;
    font-weight: 700;
    color: #475569;
    margin-left: 4px;
}

@media (max-width:768px) {
    .cc-section {
        padding: 40px 0 48px;
    }

    .cc-container {
        padding: 0 16px;
    }

    .ptabs-panel {
        padding: 24px 20px;
    }

    .ptabs-btn {
        padding: 13px 16px;
        font-size: .8rem;
    }

    .ptabs-h2 {
        font-size: 1.15rem;
    }
}

@media (max-width:576px) {
    .cc-card {
        padding: 20px 18px 18px;
    }

    .ptabs-panel {
        padding: 20px 16px;
    }

    .ptabs-btn {
        padding: 12px 14px;
        font-size: .76rem;
    }

    .ptabs-h2 {
        font-size: 1.05rem;
    }

    .ptabs-check {
        padding: 8px 10px;
    }

    .ptabs-check p {
        font-size: .82rem;
    }

    .ptabs-step {
        gap: 14px;
        padding: 14px 0;
    }

    .ptabs-step-n {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .ptabs-step-n span {
        font-size: .75rem;
    }

    .ptabs-tags li {
        font-size: .7rem;
        padding: 3px 9px;
    }

    .ptabs-provider-card {
        padding: 12px 14px;
    }

    .ptabs-provider-ico {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .ptabs-provider-ico svg {
        width: 18px;
        height: 18px;
    }

    .ptabs-provider-card strong {
        font-size: .82rem;
    }

    .ptabs-provider-card span {
        font-size: .78rem;
    }
}

@media (max-width:380px) {
    .cc-card-features {
        gap: 6px;
    }

    .cc-card-features li {
        font-size: 11.5px;
    }
}

/* ===== FAQ ===== */
.faq-section {
    margin: 0 auto;
    padding: 0 20px 50px;
    background: #f8f9fb;
    content-visibility: auto;
    contain-intrinsic-size: auto 640px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-header {
    text-align: center;
}

.faq-header-title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
    letter-spacing: -.3px;
}

.banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(248, 193, 70, .12);
    border: 1px solid rgba(248, 193, 70, .35);
    color: #8a6209;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.banner-tag svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, .2);
}

.faq-item.active {
    border-color: rgba(245, 158, 11, .3);
    box-shadow: 0 4px 20px rgba(245, 158, 11, .06);
}

.faq-q-wrap {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.faq-question {
    background: transparent;
    border: none;
    color: #0f172a;
    padding: 16px 18px;
    width: 100%;
    font-family: inherit;
    font-size: .92rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.faq-question:hover {
    background: #fefcf7;
}

.faq-question:focus-visible {
    outline: 2px solid #b45309;
    outline-offset: -2px;
}

.faq-question-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 10px;
    background: #fef9ee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b45309;
}

.faq-question-icon svg {
    width: 15px;
    height: 15px;
}

.faq-item.active .faq-question-icon {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
}

.faq-question-text {
    flex: 1;
}

.faq-toggle-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #6b7280;
}

.faq-toggle-icon::before {
    content: "+";
}

.faq-item.active .faq-toggle-icon {
    background: #fef9ee;
    color: #b45309;
}

.faq-item.active .faq-toggle-icon::before {
    content: "\2212";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-in-out;
    background: #fefcf7;
}

.faq-item.active .faq-answer {
    border-top: 1px solid rgba(245, 158, 11, .1);
}

.faq-answer-inner {
    padding: 18px 18px 18px 64px;
}

.faq-answer p {
    color: #334155;
    line-height: 1.7;
    font-size: .9rem;
    margin: 0;
}

@media (max-width:600px) {
    .faq-section {
        padding: 0 12px 40px;
    }

    .faq-question {
        padding: 14px;
        font-size: .86rem;
        gap: 10px;
    }

    .faq-question-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .faq-question-icon svg {
        width: 13px;
        height: 13px;
    }

    .faq-toggle-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 14px;
    }

    .faq-answer-inner {
        padding: 14px;
    }

    .faq-answer p {
        font-size: .86rem;
    }
}

@media (prefers-reduced-motion:reduce) {

    .crs-page *,
    .crs-page *::before,
    .crs-page *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}