.book-translation-page {
    --bkt-primary: #7137df;
    --bkt-primary-dark: #4f1bb6;
    --bkt-blue: #1769e0;
    --bkt-ink: #16213a;
    --bkt-text: #566176;
    --bkt-muted: #7e8798;
    --bkt-soft: #f7f5fc;
    --bkt-border: #e7e1f1;
    --bkt-white: #fff;
    --bkt-radius-lg: 30px;
    --bkt-radius-md: 22px;
    --bkt-radius-sm: 15px;
    position: relative;
    overflow: hidden;
    color: var(--bkt-ink);
    background: #fff;
    font-family: var(--firstFont);
}

.book-translation-page *,
.book-translation-page *::before,
.book-translation-page *::after {
    box-sizing: border-box;
}

.book-translation-page button,
.book-translation-page input,
.book-translation-page textarea,
.book-translation-page select {
    font-family: var(--firstFont);
}

.book-translation-page a {
    color: inherit;
    text-decoration: none;
}

.book-translation-page img {
    max-width: 100%;
}

.book-translation-page h1,
.book-translation-page h2,
.book-translation-page h3,
.book-translation-page p,
.book-translation-page ul,
.book-translation-page ol,
.book-translation-page dl,
.book-translation-page blockquote {
    margin-top: 0;
}

.book-translation-page button:focus-visible,
.book-translation-page a:focus-visible {
    outline: 3px solid rgba(23, 105, 224, .35);
    outline-offset: 4px;
}

.book-translation-page [hidden] {
    display: none !important;
}

.bkt-breadcrumb {
    position: relative;
    z-index: 8;
    padding: 14px 0 10px;
    border-bottom: 1px solid rgba(113, 55, 223, .08);
    background: rgba(255, 255, 255, .92);
}

.bkt-breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #737b8c;
    font-size: .78rem;
}

.bkt-breadcrumb li + li::before {
    content: "/";
    margin-left: 8px;
    color: #beb7cd;
}

.bkt-breadcrumb a {
    color: var(--bkt-primary);
    font-weight: 800;
}

.bkt-hero {
    position: relative;
    padding: 62px 0 82px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 10%, rgba(113, 55, 223, .16), transparent 30%),
        radial-gradient(circle at 8% 86%, rgba(23, 105, 224, .12), transparent 28%),
        linear-gradient(180deg, #fbfaff, #fff 78%);
}

.bkt-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.bkt-hero-orb-one {
    top: 90px;
    right: -70px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(113, 55, 223, .12);
    box-shadow: inset 0 0 80px rgba(113, 55, 223, .05);
}

.bkt-hero-orb-two {
    left: -90px;
    bottom: 20px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(23, 105, 224, .12);
}

.bkt-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
    align-items: center;
    gap: 52px;
}

.bkt-hero-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 18px;
}

.bkt-eyebrow,
.bkt-language-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
}

.bkt-eyebrow {
    border: 1px solid rgba(113, 55, 223, .15);
    color: #5b29c5;
    background: rgba(248, 244, 255, .9);
}

.bkt-language-badge {
    border: 1px solid rgba(23, 105, 224, .15);
    color: #1769e0;
    background: rgba(239, 247, 255, .9);
}

.bkt-hero h1 {
    max-width: 760px;
    margin-bottom: 18px;
    color: #111b34;
    font-size: clamp(2.05rem, 3.6vw, 3.45rem);
    font-weight: 900;
    line-height: 1.48;
    letter-spacing: -.035em;
}

.bkt-hero-lead {
    max-width: 760px;
    margin-bottom: 25px;
    color: #586176;
    font-size: 1.02rem;
    line-height: 2.15;
    text-align: justify;
    text-align-last: right;
}

.bkt-hero-actions,
.bkt-mid-cta-actions,
.bkt-final-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
}

.bkt-btn {
    position: relative;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: .88rem;
    font-weight: 900;
    line-height: 1.7;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease, color .3s ease;
}

.bkt-btn::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -80px;
    width: 45px;
    height: 140%;
    background: rgba(255, 255, 255, .28);
    transform: rotate(18deg);
    transition: right .55s ease;
}

.bkt-btn:hover::after {
    right: calc(100% + 35px);
}

.bkt-btn-primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--bkt-primary), var(--bkt-blue));
    box-shadow: 0 14px 30px rgba(90, 46, 190, .23);
}

.bkt-btn-secondary {
    border-color: #dfd6f1;
    color: #493f5d !important;
    background: #fff;
}

.bkt-btn-light {
    color: #5a2ac7 !important;
    background: #fff;
    box-shadow: 0 13px 30px rgba(31, 18, 74, .16);
}

.bkt-btn-ghost {
    border-color: rgba(255, 255, 255, .36);
    color: #fff !important;
    background: rgba(255, 255, 255, .1);
}

.bkt-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    color: #666e7e;
    font-size: .78rem;
    font-weight: 800;
}

.bkt-hero-trust li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.bkt-hero-trust i {
    color: var(--bkt-primary);
}

.bkt-hero-visual {
    position: relative;
    min-height: 520px;
}

.bkt-book-scene {
    position: absolute;
    inset: 18px 0 0;
    overflow: hidden;
    border: 1px solid rgba(113, 55, 223, .14);
    border-radius: 34px;
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 255, 255, .95), transparent 25%),
        linear-gradient(145deg, #f1ebff, #eef7ff 58%, #fff);
    box-shadow: 0 28px 70px rgba(61, 39, 116, .17);
}

.bkt-book-scene::before,
.bkt-book-scene::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bkt-book-scene::before {
    top: -90px;
    left: -65px;
    width: 220px;
    height: 220px;
    background: rgba(23, 105, 224, .08);
}

.bkt-book-scene::after {
    right: -80px;
    bottom: -85px;
    width: 240px;
    height: 240px;
    background: rgba(113, 55, 223, .1);
}

.bkt-floating-note {
    position: absolute;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    border: 1px solid rgba(113, 55, 223, .16);
    border-radius: 999px;
    color: #5f35bf;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 10px 24px rgba(70, 45, 131, .12);
    font: 800 .65rem/1.4 sans-serif;
    animation: bktFloat 4.4s ease-in-out infinite;
}

.bkt-floating-note-one { top: 32px; right: 32px; }
.bkt-floating-note-two { top: 84px; left: 30px; animation-delay: .7s; }
.bkt-floating-note-three { right: 47px; bottom: 102px; animation-delay: 1.4s; }

.bkt-book-stack {
    position: absolute;
    z-index: 2;
    top: 115px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
    transform: rotate(4deg);
}

.bkt-book-spine {
    display: flex;
    height: 42px;
    align-items: center;
    padding: 0 18px;
    border-radius: 7px 11px 11px 7px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(45, 27, 88, .16);
}

.bkt-book-spine b {
    font: 800 .68rem/1 sans-serif;
    letter-spacing: .05em;
}

.bkt-book-spine-one { width: 195px; background: linear-gradient(90deg, #281861, #5b2ec7); }
.bkt-book-spine-two { width: 225px; background: linear-gradient(90deg, #1769e0, #56a4ff); }
.bkt-book-spine-three { width: 178px; background: linear-gradient(90deg, #9a3fd4, #d76ce2); }

.bkt-open-book {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 68px;
    display: grid;
    grid-template-columns: 1fr 10px 1fr;
    width: 82%;
    min-height: 235px;
    transform: translateX(-50%) perspective(800px) rotateX(5deg);
    filter: drop-shadow(0 25px 28px rgba(44, 26, 91, .2));
}

.bkt-page {
    position: relative;
    padding: 25px 23px 20px;
    overflow: hidden;
    background: #fffdf8;
}

.bkt-page-right {
    border-radius: 8px 24px 24px 10px;
    transform: skewY(2deg);
}

.bkt-page-left {
    border-radius: 24px 8px 10px 24px;
    transform: skewY(-2deg);
}

.bkt-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(85, 54, 128, .07), transparent 25%, transparent 75%, rgba(85, 54, 128, .05));
}

.bkt-page-kicker {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 22px;
    color: #8a73b7;
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.bkt-page i {
    position: relative;
    z-index: 2;
    display: block;
    height: 5px;
    margin-bottom: 11px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(80, 56, 119, .17), rgba(80, 56, 119, .06));
}

.bkt-page i:nth-of-type(2) { width: 90%; }
.bkt-page i:nth-of-type(3) { width: 76%; }
.bkt-page i:nth-of-type(4) { width: 95%; }
.bkt-page i:nth-of-type(5) { width: 65%; }

.bkt-page strong {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 20px;
    color: #4c3b68;
    font-size: .78rem;
}

.bkt-book-center {
    position: relative;
    z-index: 3;
    background: linear-gradient(90deg, rgba(51, 31, 76, .18), #fff 45%, rgba(51, 31, 76, .15));
}

.bkt-translation-status {
    position: absolute;
    z-index: 6;
    right: 50%;
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(50%);
}

.bkt-translation-status span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid rgba(113, 55, 223, .13);
    border-radius: 999px;
    color: #5c5071;
    background: rgba(255, 255, 255, .91);
    font-size: .61rem;
    font-weight: 900;
    white-space: nowrap;
}

.bkt-translation-status i { color: #32a56d; }

@keyframes bktFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.bkt-section {
    position: relative;
    padding: 88px 0;
}

.bkt-section-heading {
    max-width: 820px;
    margin: 0 auto 38px;
    text-align: center;
}

.bkt-section-heading-start {
    margin-right: 0;
    text-align: right;
}

.bkt-section-heading > span,
.bkt-kicker,
.bkt-cost-layout .bkt-section-heading > span,
.bkt-installment-card > div:nth-child(2) > span,
.bkt-final-card > div:nth-child(2) > span {
    display: inline-flex;
    margin-bottom: 9px;
    color: var(--bkt-primary);
    font-size: .78rem;
    font-weight: 900;
}

.bkt-section-heading h2,
.bkt-mid-cta-card h2,
.bkt-final-card h2 {
    margin-bottom: 10px;
    color: #1a2540;
    font-size: clamp(1.7rem, 2.6vw, 2.45rem);
    font-weight: 900;
    line-height: 1.65;
}

.bkt-section-heading p {
    max-width: 740px;
    margin: 0 auto;
    color: var(--bkt-text);
    font-size: .94rem;
    line-height: 2.05;
}

.bkt-section-heading-start p { margin-right: 0; }

.bkt-problem {
    background: #fff;
}

.bkt-problem-grid,
.bkt-feature-grid,
.bkt-fields-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
}

.bkt-info-card,
.bkt-feature-card,
.bkt-fields-grid article {
    position: relative;
    min-height: 260px;
    padding: 26px 22px;
    overflow: hidden;
    border: 1px solid var(--bkt-border);
    border-radius: var(--bkt-radius-md);
    background: #fff;
    box-shadow: 0 12px 35px rgba(47, 37, 71, .055);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.bkt-info-card::after,
.bkt-feature-card::after,
.bkt-fields-grid article::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--bkt-primary), var(--bkt-blue));
    transition: width .35s ease;
}

.bkt-card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #dad2e7;
    font: 800 .78rem/1 sans-serif;
}

.bkt-info-card > i,
.bkt-feature-card > i,
.bkt-fields-grid article > i {
    display: grid;
    width: 55px;
    height: 55px;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 18px;
    color: var(--bkt-primary);
    background: linear-gradient(145deg, #f4efff, #edf6ff);
    font-size: 1.35rem;
    transition: transform .35s ease;
}

.bkt-info-card h3,
.bkt-feature-card h3,
.bkt-fields-grid h3 {
    margin-bottom: 9px;
    color: #263149;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.8;
}

.bkt-info-card p,
.bkt-feature-card p,
.bkt-fields-grid p {
    margin-bottom: 0;
    color: #657084;
    font-size: .78rem;
    line-height: 2;
    text-align: justify;
    text-align-last: right;
}

.bkt-workbench {
    background:
        radial-gradient(circle at 10% 12%, rgba(23, 105, 224, .07), transparent 25%),
        linear-gradient(180deg, #f9f7ff, #fff);
}

.bkt-workbench-shell {
    padding: 42px;
    border: 1px solid #e3daf4;
    border-radius: 32px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 24px 60px rgba(53, 40, 85, .09);
}

.bkt-workbench-grid {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 25px;
}

.bkt-stage-tabs {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.bkt-stage-tab {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    min-height: 82px;
    padding: 13px 15px;
    border: 1px solid #e4ddeb;
    border-radius: 17px;
    text-align: right;
    color: #5d6472;
    background: #fff;
    transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.bkt-stage-tab > span {
    grid-row: 1 / 3;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    color: #7241d3;
    background: #f2edff;
    font: 900 .69rem/1 sans-serif;
}

.bkt-stage-tab b {
    color: #31394b;
    font-size: .85rem;
}

.bkt-stage-tab small {
    color: #8a8494;
    font-size: .67rem;
}

.bkt-stage-tab.is-active {
    border-color: rgba(113, 55, 223, .3);
    color: #fff;
    background: linear-gradient(135deg, #632ad1, #1769e0);
    box-shadow: 0 15px 33px rgba(73, 36, 157, .2);
    transform: translateX(-5px);
}

.bkt-stage-tab.is-active > span {
    color: #5a28c6;
    background: #fff;
}

.bkt-stage-tab.is-active b,
.bkt-stage-tab.is-active small { color: #fff; }
.bkt-stage-tab.is-active small { opacity: .75; }

.bkt-stage-panels {
    min-height: 446px;
}

.bkt-stage-panel {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 24px;
    height: 100%;
    min-height: 446px;
    align-items: start;
    padding: 42px 40px;
    border: 1px solid #e3dbef;
    border-radius: 25px;
    background:
        radial-gradient(circle at top left, rgba(23, 105, 224, .1), transparent 28%),
        radial-gradient(circle at bottom right, rgba(113, 55, 223, .1), transparent 30%),
        #fff;
}

.bkt-stage-icon {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border-radius: 26px;
    color: #fff;
    background: linear-gradient(135deg, var(--bkt-primary), var(--bkt-blue));
    box-shadow: 0 18px 35px rgba(75, 39, 161, .24);
    font-size: 1.8rem;
}

.bkt-stage-panel h3 {
    margin-bottom: 12px;
    color: #263149;
    font-size: 1.28rem;
    font-weight: 900;
    line-height: 1.8;
}

.bkt-stage-panel p {
    color: #606a7e;
    font-size: .88rem;
    line-height: 2.1;
    text-align: justify;
}

.bkt-stage-panel ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.bkt-stage-panel li {
    padding: 11px 10px;
    border: 1px solid #e4dcf0;
    border-radius: 13px;
    color: #655a79;
    text-align: center;
    background: rgba(250, 248, 255, .9);
    font-size: .7rem;
    font-weight: 800;
}

.bkt-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bkt-feature-card {
    min-height: 235px;
}

.bkt-mid-cta {
    padding: 24px 0 84px;
}

.bkt-mid-cta-card,
.bkt-final-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    padding: 35px 38px;
    overflow: hidden;
    border-radius: 29px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 15%, rgba(255, 255, 255, .19), transparent 25%),
        linear-gradient(135deg, #4e1cb9, #7137df 55%, #1769e0);
    box-shadow: 0 24px 55px rgba(61, 30, 140, .25);
}

.bkt-mid-cta-card::after,
.bkt-final-card::after {
    content: "";
    position: absolute;
    top: -110px;
    left: -60px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
}

.bkt-mid-cta-card > div,
.bkt-final-card > div {
    position: relative;
    z-index: 2;
}

.bkt-mid-cta-card > div:first-child > span {
    display: inline-flex;
    margin-bottom: 7px;
    color: #dcd0ff;
    font-size: .74rem;
    font-weight: 900;
}

.bkt-mid-cta-card h2,
.bkt-final-card h2 {
    margin-bottom: 9px;
    color: #fff;
    font-size: clamp(1.5rem, 2.2vw, 2.05rem);
}

.bkt-mid-cta-card p,
.bkt-final-card p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .78);
    font-size: .82rem;
    line-height: 2;
}

.bkt-library-section {
    background:
        radial-gradient(circle at 100% 10%, rgba(113, 55, 223, .07), transparent 28%),
        #fbfbfe;
}

.bkt-library-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
    padding: 14px 16px;
    border: 1px solid #e5deef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(48, 37, 70, .055);
}

.bkt-library-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.bkt-library-filters button {
    min-height: 39px;
    padding: 8px 13px;
    border: 1px solid #e3ddec;
    border-radius: 12px;
    color: #6c6578;
    background: #fff;
    font-size: .72rem;
    font-weight: 900;
    transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.bkt-library-filters button.is-active {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, var(--bkt-primary), var(--bkt-blue));
    box-shadow: 0 9px 20px rgba(86, 45, 178, .19);
}

.bkt-library-count {
    flex: 0 0 auto;
    margin: 0;
    color: #777081;
    font-size: .72rem;
}

.bkt-library-count strong {
    color: var(--bkt-primary);
    font-size: 1rem;
}

.bkt-library-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.bkt-book-card {
    position: relative;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 270px;
    gap: 18px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid #e4ddec;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 13px 36px rgba(47, 36, 70, .07);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, opacity .25s ease;
}

.bkt-book-card.is-hidden {
    display: none;
}

.bkt-book-card-featured {
    border-color: rgba(113, 55, 223, .27);
    background: linear-gradient(145deg, #fff, #faf7ff);
}

.bkt-cover {
    position: relative;
    display: flex;
    min-height: 225px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 11px;
    overflow: hidden;
    border-radius: 8px 18px 18px 8px;
    color: #fff;
    text-align: center;
    box-shadow: 0 18px 30px rgba(36, 25, 64, .21);
    transform: perspective(800px) rotateY(-5deg);
    transition: transform .35s ease, box-shadow .35s ease;
}

.bkt-cover::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background: rgba(255, 255, 255, .18);
}

.bkt-cover::after {
    content: "";
    position: absolute;
    top: -35px;
    left: -35px;
    width: 90px;
    height: 90px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
}

.bkt-cover span {
    position: relative;
    z-index: 2;
    font: 900 .76rem/1.55 sans-serif;
    letter-spacing: .03em;
}

.bkt-cover i {
    position: absolute;
    z-index: 2;
    right: 13px;
    bottom: 12px;
    max-width: 80%;
    overflow: hidden;
    color: rgba(255, 255, 255, .82);
    font: 700 .55rem/1.4 sans-serif;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bkt-cover-violet { background: linear-gradient(145deg, #31137b, #7c3aed); }
.bkt-cover-blue { background: linear-gradient(145deg, #0f3978, #2683e8); }
.bkt-cover-rose { background: linear-gradient(145deg, #a3195b, #f05c92); }
.bkt-cover-green { background: linear-gradient(145deg, #185c45, #42a87e); }
.bkt-cover-cyan { background: linear-gradient(145deg, #087d91, #2ac6cf); }
.bkt-cover-orange { background: linear-gradient(145deg, #a1420b, #f59e0b); }
.bkt-cover-navy { background: linear-gradient(145deg, #111c3c, #334e88); }
.bkt-cover-plum { background: linear-gradient(145deg, #5e1f67, #b356bd); }
.bkt-cover-red { background: linear-gradient(145deg, #7c151e, #dc3e4d); }
.bkt-cover-black { background: linear-gradient(145deg, #111, #454545); }
.bkt-cover-yellow { color: #292014; background: linear-gradient(145deg, #ffd84a, #f59e0b); }
.bkt-cover-yellow i { color: rgba(41, 32, 20, .7); }

.bkt-book-card-content {
    min-width: 0;
    padding-top: 4px;
}

.bkt-book-tag {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 9px;
    border-radius: 999px;
    color: #6731c9;
    background: #f1ebff;
    font-size: .62rem;
    font-weight: 900;
}

.bkt-book-card h3 {
    margin-bottom: 7px;
    color: #28334a;
    font-size: .94rem;
    font-weight: 900;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.bkt-book-card-content > p {
    margin-bottom: 14px;
    color: #72798a;
    font-size: .68rem;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.bkt-book-card dl {
    display: grid;
    gap: 7px;
    margin-bottom: 0;
}

.bkt-book-card dl > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 7px;
    border-top: 1px dashed #e2dce9;
    font-size: .62rem;
}

.bkt-book-card dt {
    color: #9992a4;
    font-weight: 700;
}

.bkt-book-card dd {
    margin: 0;
    color: #4e455c;
    font-weight: 900;
    text-align: left;
}

.bkt-library-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 25px 0 0;
    color: #7e7589;
    font-size: .72rem;
    line-height: 1.9;
    text-align: center;
}

.bkt-library-note i { color: var(--bkt-primary); }

.bkt-comparison {
    background: #fff;
}

.bkt-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.bkt-comparison-card {
    position: relative;
    padding: 31px 28px;
    overflow: hidden;
    border: 1px solid #e4ddec;
    border-radius: 25px;
    background: linear-gradient(145deg, #fff, #faf8ff);
    box-shadow: 0 16px 42px rgba(47, 36, 70, .07);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.bkt-comparison-card::after {
    content: "";
    position: absolute;
    left: -70px;
    bottom: -70px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(113, 55, 223, .06);
}

.bkt-comparison-icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    margin-bottom: 17px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--bkt-primary), var(--bkt-blue));
    font-size: 1.45rem;
    box-shadow: 0 14px 28px rgba(81, 39, 170, .2);
}

.bkt-comparison-card h3 {
    margin-bottom: 15px;
    color: #2b354a;
    font-size: 1.12rem;
    font-weight: 900;
}

.bkt-comparison-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bkt-comparison-card li {
    position: relative;
    padding-right: 23px;
    color: #616b7d;
    font-size: .8rem;
    line-height: 1.9;
}

.bkt-comparison-card li::before {
    content: "✓";
    position: absolute;
    top: 0;
    right: 0;
    color: var(--bkt-primary);
    font-weight: 900;
}

.bkt-cost {
    background:
        radial-gradient(circle at 12% 80%, rgba(23, 105, 224, .07), transparent 27%),
        #f9f8fc;
}

.bkt-cost-layout {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    align-items: start;
    gap: 40px;
}

.bkt-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--bkt-primary) !important;
    font-size: .8rem;
    font-weight: 900;
}

.bkt-cost-factors {
    display: grid;
    gap: 10px;
}

.bkt-cost-factors > div {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
    min-height: 78px;
    padding: 13px 16px;
    overflow: hidden;
    border: 1px solid #e2dbea;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(47, 36, 70, .045);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.bkt-cost-factors span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    color: #6831ca;
    background: #f0eaff;
    font: 900 .7rem/1 sans-serif;
}

.bkt-cost-factors p {
    margin-bottom: 0;
    color: #657084;
    font-size: .78rem;
    line-height: 1.9;
}

.bkt-cost-factors strong { color: #313b50; }

.bkt-installment-card {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin-top: 35px;
    padding: 25px 26px;
    border: 1px solid #ddd4ec;
    border-radius: 23px;
    background:
        radial-gradient(circle at left center, rgba(23, 105, 224, .09), transparent 25%),
        #fff;
    box-shadow: 0 14px 40px rgba(48, 36, 73, .07);
}

.bkt-installment-icon {
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    border-radius: 21px;
    color: #fff;
    background: linear-gradient(135deg, var(--bkt-primary), var(--bkt-blue));
    font-size: 1.45rem;
}

.bkt-installment-card h3 {
    margin-bottom: 6px;
    color: #2b354a;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.85;
}

.bkt-installment-card p {
    margin-bottom: 0;
    color: #667084;
    font-size: .76rem;
    line-height: 1.95;
}

.bkt-process {
    background: #fff;
}

.bkt-process-list {
    position: relative;
    max-width: 930px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.bkt-process-list::before {
    content: "";
    position: absolute;
    top: 35px;
    right: 31px;
    bottom: 35px;
    width: 2px;
    background: linear-gradient(var(--bkt-primary), rgba(23, 105, 224, .22));
}

.bkt-process-list li {
    position: relative;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 13px;
}

.bkt-process-list li > span {
    position: relative;
    z-index: 2;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 7px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--bkt-primary), var(--bkt-blue));
    box-shadow: 0 10px 25px rgba(75, 38, 158, .22);
    font: 900 .7rem/1 sans-serif;
}

.bkt-process-list li > div {
    padding: 18px 21px;
    border: 1px solid #e3ddea;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 9px 28px rgba(47, 36, 70, .05);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.bkt-process-list h3 {
    margin-bottom: 5px;
    color: #303a4e;
    font-size: .93rem;
    font-weight: 900;
}

.bkt-process-list p {
    margin-bottom: 0;
    color: #697285;
    font-size: .74rem;
    line-height: 1.9;
}

.bkt-fields {
    background: #faf9fd;
}

.bkt-fields-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bkt-fields-grid article {
    min-height: 225px;
}

/* Reusable stats copied from the previous service landing style */
.bkt-stats-section {
    position: relative;
    padding: 78px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(34, 211, 238, .13), transparent 25%),
        radial-gradient(circle at 88% 82%, rgba(167, 139, 250, .16), transparent 30%),
        #f8f7ff;
}

.bkt-stats-shell {
    position: relative;
    padding: 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, .18), transparent 32%),
        linear-gradient(135deg, #5124c7, #6d32dd 48%, #1769e0);
    box-shadow: 0 25px 65px rgba(54, 29, 119, .22);
}

.bkt-stats-shell::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -20%;
    right: -28%;
    width: 28%;
    height: 140%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
    transform: skewX(-18deg);
    animation: bktStatsShine 6.5s ease-in-out infinite;
}

.bkt-stats-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.bkt-stats-heading > span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    color: #e8e2ff;
    background: rgba(255, 255, 255, .1);
    font-size: .78rem;
    font-weight: 800;
}

.bkt-stats-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.65rem, 2.5vw, 2.35rem);
    font-weight: 900;
    line-height: 1.65;
}

.bkt-stats-heading p {
    margin: 10px auto 0;
    color: rgba(255, 255, 255, .75);
    line-height: 2;
}

.bkt-stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.bkt-stat-card {
    position: relative;
    display: flex;
    min-height: 230px;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 22px;
    text-align: center;
    background: rgba(255, 255, 255, .11);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    transition: transform .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.bkt-stat-card::after {
    content: "";
    position: absolute;
    top: -70px;
    left: -70px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    opacity: .4;
    transition: transform .4s ease, opacity .4s ease;
}

.bkt-stat-icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 18px;
    color: #6d28d9;
    background: #fff;
    font-size: 1.35rem;
    box-shadow: 0 13px 28px rgba(28, 13, 80, .16);
    transition: transform .35s ease;
}

.bkt-stat-value {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: baseline;
    justify-content: center;
    direction: rtl;
    color: #fff;
}

.bkt-stat-number {
    color: #fff;
    font-size: 2.15rem;
    font-weight: 900;
    line-height: 1.35;
}

.bkt-stat-value > span {
    margin-right: 4px;
    color: #bae6fd;
    font-size: 1.25rem;
    font-weight: 900;
}

.bkt-stat-card h3 {
    position: relative;
    z-index: 2;
    margin: 4px 0 5px;
    color: #fff;
    font-size: .96rem;
    font-weight: 800;
    line-height: 1.8;
}

.bkt-stat-card p {
    position: relative;
    z-index: 2;
    margin: auto 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: .76rem;
    line-height: 1.9;
}

@keyframes bktStatsShine {
    0%, 28% { right: -28%; }
    65%, 100% { right: 128%; }
}

/* Reusable testimonials copied from the previous service landing style */
.bkt-testimonials-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 5% 16%, rgba(113, 55, 223, .07), transparent 25%),
        radial-gradient(circle at 96% 82%, rgba(23, 105, 224, .07), transparent 27%),
        #fbfbfe;
}

.bkt-testimonials-heading { max-width: 790px; }

.bkt-testimonials-slider {
    position: relative;
    padding: 4px 55px;
}

.bkt-testimonials-viewport {
    width: 100%;
    overflow: hidden;
}

.bkt-testimonials-track {
    display: flex;
    width: 100%;
    transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.bkt-testimonials-page {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    flex: 0 0 100%;
    gap: 18px;
    padding: 12px 2px 24px;
}

.bkt-testimonial-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 365px;
    flex-direction: column;
    padding: 25px 22px 22px;
    overflow: hidden;
    border: 1px solid #e7e1f1;
    border-radius: 23px;
    background:
        radial-gradient(circle at top right, rgba(113, 55, 223, .07), transparent 38%),
        #fff;
    box-shadow: 0 14px 38px rgba(42, 35, 70, .075);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}

.bkt-testimonial-card::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bkt-primary), #d946ef, var(--bkt-blue));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s ease;
}

.bkt-testimonial-card::after {
    content: "";
    position: absolute;
    top: -85px;
    left: -85px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(113, 55, 223, .08);
    transition: transform .4s ease, opacity .4s ease;
}

.bkt-testimonial-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.bkt-testimonial-avatar {
    position: relative;
    display: grid;
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    place-items: center;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 22px;
    background: linear-gradient(135deg, #ece5ff, #e4f3ff);
    box-shadow: 0 10px 25px rgba(74, 47, 143, .16);
    transition: transform .35s ease, box-shadow .35s ease;
}

.bkt-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bkt-testimonial-avatar-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #6535d8;
    font-weight: 900;
}

.bkt-testimonial-person { min-width: 0; }

.bkt-testimonial-person h3 {
    margin: 0 0 5px;
    color: #27344c;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.7;
}

.bkt-testimonial-person span {
    color: #7a7488;
    font-size: .72rem;
    line-height: 1.8;
}

.bkt-testimonial-stars {
    position: relative;
    z-index: 2;
    display: flex;
    direction: ltr;
    justify-content: flex-end;
    gap: 4px;
    margin-bottom: 15px;
    color: #f59e0b;
    font-size: .88rem;
}

.bkt-testimonial-card blockquote {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    margin: 0;
    color: #566074;
    font-size: .8rem;
    line-height: 2.2;
    text-align: justify;
    text-align-last: right;
}

.bkt-testimonial-quote {
    position: absolute;
    z-index: 1;
    left: 19px;
    bottom: 16px;
    color: rgba(113, 55, 223, .12);
    font-size: 2.4rem;
}

.bkt-testimonials-nav {
    position: absolute;
    z-index: 8;
    top: 50%;
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    padding: 0;
    border: 1px solid #ddd0ff;
    border-radius: 14px;
    color: #6d32dd;
    background: #fff;
    box-shadow: 0 10px 25px rgba(71, 50, 130, .13);
    transform: translateY(-50%);
    transition: transform .3s ease, color .3s ease, background .3s ease, box-shadow .3s ease;
}

.bkt-testimonials-prev { right: 3px; }
.bkt-testimonials-next { left: 3px; }

.bkt-testimonials-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    gap: 3px;
    margin-top: 2px;
}

.bkt-testimonials-dot {
    position: relative;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
}

.bkt-testimonials-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d8d1e6;
    transform: translate(50%, -50%);
    transition: width .3s ease, border-radius .3s ease, background .3s ease;
}

.bkt-testimonials-dot.is-active::before {
    width: 25px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--bkt-primary), var(--bkt-blue));
}

.bkt-testimonials-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 22px;
    padding: 22px 24px;
    border: 1px solid #ddd1f5;
    border-radius: 21px;
    background:
        radial-gradient(circle at left center, rgba(23, 105, 224, .1), transparent 27%),
        linear-gradient(135deg, #f6f1ff, #fff);
}

.bkt-testimonials-action strong {
    color: #2a3650;
    font-size: .96rem;
}

.bkt-testimonials-action p {
    margin: 6px 0 0;
    color: #6c7485;
    font-size: .82rem;
    line-height: 1.9;
}

.bkt-faq {
    background: #fff;
}

.bkt-faq-list {
    max-width: 940px;
    margin: 0 auto;
    border-top: 1px solid #e6dfed;
}

.bkt-faq-list article {
    border-bottom: 1px solid #e6dfed;
}

.bkt-faq-list h3 {
    margin: 0;
}

.bkt-faq-list button {
    display: flex;
    width: 100%;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 4px;
    border: 0;
    color: #30394d;
    text-align: right;
    background: transparent;
    font-size: .9rem;
    font-weight: 900;
    line-height: 1.9;
}

.bkt-faq-list button i {
    flex: 0 0 auto;
    color: var(--bkt-primary);
    transition: transform .3s ease;
}

.bkt-faq-list button[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.bkt-faq-list [role="region"] {
    padding: 0 3px 20px;
}

.bkt-faq-list p {
    margin: 0;
    color: #687184;
    font-size: .8rem;
    line-height: 2.05;
}

.bkt-related {
    background: #faf9fd;
}

.bkt-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.bkt-related-grid > a {
    position: relative;
    display: flex;
    min-height: 230px;
    flex-direction: column;
    padding: 24px 21px;
    overflow: hidden;
    border: 1px solid #e3dcea;
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 11px 31px rgba(47, 36, 70, .06);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.bkt-related-grid > a > i {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 17px;
    color: var(--bkt-primary);
    background: #f1ebff;
    font-size: 1.25rem;
}

.bkt-related-grid span {
    color: #2c364b;
    font-size: .92rem;
    font-weight: 900;
}

.bkt-related-grid p {
    margin: 8px 0 0;
    color: #727a8b;
    font-size: .72rem;
    line-height: 1.95;
}

.bkt-related-grid b {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    margin-top: auto;
    align-self: flex-end;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--bkt-primary), var(--bkt-blue));
}

.bkt-final-cta {
    padding: 25px 0 90px;
    background: #faf9fd;
}

.bkt-final-card {
    grid-template-columns: 105px minmax(0, 1fr) auto;
    padding: 38px;
}

.bkt-final-visual {
    display: grid;
    width: 90px;
    height: 90px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 29px;
    background: rgba(255, 255, 255, .12);
    font-size: 2.15rem;
}

.bkt-final-visual span {
    position: absolute;
    width: 11px;
    height: 11px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #7e4ce5;
}

.bkt-final-visual span:nth-child(2) { top: 5px; right: 8px; }
.bkt-final-visual span:nth-child(3) { left: 7px; bottom: 12px; }
.bkt-final-visual span:nth-child(4) { right: 14px; bottom: 5px; }

[data-bkt-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-bkt-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.bkt-touch-active {
    transform: translateY(-5px) !important;
    border-color: rgba(113, 55, 223, .27) !important;
    box-shadow: 0 16px 36px rgba(54, 35, 111, .12) !important;
}

@media (hover: hover) and (pointer: fine) {
    .bkt-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 38px rgba(77, 39, 162, .24);
    }

    .bkt-btn-secondary:hover {
        border-color: rgba(113, 55, 223, .3);
        color: var(--bkt-primary) !important;
    }

    .bkt-info-card:hover,
    .bkt-feature-card:hover,
    .bkt-fields-grid article:hover,
    .bkt-comparison-card:hover,
    .bkt-cost-factors > div:hover,
    .bkt-process-list li > div:hover,
    .bkt-related-grid > a:hover {
        transform: translateY(-7px);
        border-color: rgba(113, 55, 223, .25);
        box-shadow: 0 20px 44px rgba(52, 37, 91, .12);
    }

    .bkt-info-card:hover::after,
    .bkt-feature-card:hover::after,
    .bkt-fields-grid article:hover::after {
        width: 100%;
    }

    .bkt-info-card:hover > i,
    .bkt-feature-card:hover > i,
    .bkt-fields-grid article:hover > i {
        transform: translateY(-4px) rotate(-5deg) scale(1.07);
    }

    .bkt-stage-tab:not(.is-active):hover {
        transform: translateX(-4px);
        border-color: rgba(113, 55, 223, .25);
        box-shadow: 0 12px 26px rgba(61, 40, 112, .09);
    }

    .bkt-library-filters button:hover {
        transform: translateY(-2px);
        border-color: rgba(113, 55, 223, .28);
    }

    .bkt-book-card:hover {
        transform: translateY(-8px);
        border-color: rgba(113, 55, 223, .3);
        box-shadow: 0 24px 52px rgba(55, 39, 96, .15);
    }

    .bkt-book-card:hover .bkt-cover {
        transform: perspective(800px) rotateY(0) translateY(-4px);
        box-shadow: 0 23px 38px rgba(36, 25, 64, .26);
    }

    .bkt-stat-card:hover {
        transform: translateY(-9px);
        border-color: rgba(255, 255, 255, .44);
        background: rgba(255, 255, 255, .17);
        box-shadow: 0 22px 44px rgba(27, 13, 72, .2);
    }

    .bkt-stat-card:hover::after {
        opacity: .7;
        transform: scale(1.35);
    }

    .bkt-stat-card:hover .bkt-stat-icon {
        transform: translateY(-4px) scale(1.08) rotate(-5deg);
    }

    .bkt-testimonial-card:hover {
        transform: translateY(-8px);
        border-color: #d7c8fa;
        box-shadow: 0 23px 50px rgba(67, 48, 120, .14);
    }

    .bkt-testimonial-card:hover::before { transform: scaleX(1); }
    .bkt-testimonial-card:hover::after { transform: scale(1.3); opacity: .55; }

    .bkt-testimonial-card:hover .bkt-testimonial-avatar {
        transform: translateY(-4px) rotate(-3deg) scale(1.05);
        box-shadow: 0 15px 30px rgba(113, 55, 223, .2);
    }

    .bkt-testimonials-nav:hover {
        color: #fff;
        background: linear-gradient(135deg, var(--bkt-primary), var(--bkt-blue));
        transform: translateY(-50%) scale(1.08);
        box-shadow: 0 14px 30px rgba(113, 55, 223, .25);
    }
}

@media (max-width: 1199.98px) {
    .bkt-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(350px, .85fr);
        gap: 35px;
    }

    .bkt-library-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bkt-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .bkt-hero-grid,
    .bkt-cost-layout {
        grid-template-columns: 1fr;
    }

    .bkt-hero-content {
        text-align: center;
    }

    .bkt-hero-badges,
    .bkt-hero-actions,
    .bkt-hero-trust {
        justify-content: center;
    }

    .bkt-hero-lead {
        margin-right: auto;
        margin-left: auto;
        text-align-last: center;
    }

    .bkt-hero-visual {
        min-height: 505px;
    }

    .bkt-book-scene {
        right: 8%;
        left: 8%;
    }

    .bkt-problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bkt-workbench-grid {
        grid-template-columns: 1fr;
    }

    .bkt-stage-tabs {
        display: grid;
        grid-template-columns: repeat(5, minmax(130px, 1fr));
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: thin;
    }

    .bkt-stage-tab {
        min-width: 145px;
    }

    .bkt-stage-tab.is-active {
        transform: translateY(-4px);
    }

    .bkt-feature-grid,
    .bkt-fields-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bkt-mid-cta-card,
    .bkt-final-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bkt-mid-cta-actions,
    .bkt-final-actions {
        justify-content: center;
    }

    .bkt-final-visual {
        margin: 0 auto;
    }

    .bkt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bkt-testimonials-page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .book-translation-page .container {
        padding-right: 17px;
        padding-left: 17px;
    }

    .bkt-breadcrumb {
        padding-top: 10px;
        padding-bottom: 8px;
    }

    .bkt-hero {
        padding: 38px 0 58px;
    }

    .bkt-hero-badges {
        gap: 7px;
    }

    .bkt-eyebrow,
    .bkt-language-badge {
        padding: 8px 11px;
        font-size: .68rem;
    }

    .bkt-hero h1 {
        font-size: clamp(1.78rem, 8.5vw, 2.35rem);
        line-height: 1.62;
    }

    .bkt-hero-lead {
        font-size: .88rem;
        line-height: 2.05;
        text-align: justify;
        text-align-last: right;
    }

    .bkt-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .bkt-btn {
        width: 100%;
        min-height: 52px;
    }

    .bkt-hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: start;
        width: max-content;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        text-align: right;
    }

    .bkt-hero-visual {
        min-height: 425px;
    }

    .bkt-book-scene {
        inset: 10px 0 0;
        border-radius: 25px;
    }

    .bkt-book-stack {
        top: 78px;
        right: 25px;
        transform: scale(.82) rotate(4deg);
        transform-origin: top right;
    }

    .bkt-open-book {
        width: 92%;
        min-height: 195px;
        bottom: 65px;
    }

    .bkt-page {
        padding: 20px 14px 17px;
    }

    .bkt-page-kicker { margin-bottom: 16px; }
    .bkt-page i { height: 4px; margin-bottom: 9px; }

    .bkt-translation-status {
        bottom: 20px;
        gap: 5px;
    }

    .bkt-translation-status span {
        padding: 6px 7px;
        font-size: .52rem;
    }

    .bkt-floating-note {
        font-size: .55rem;
    }

    .bkt-floating-note-one { top: 22px; right: 18px; }
    .bkt-floating-note-two { top: 52px; left: 15px; }
    .bkt-floating-note-three { right: 22px; bottom: 92px; }

    .bkt-section {
        padding: 60px 0;
    }

    .bkt-section-heading {
        margin-bottom: 28px;
    }

    .bkt-section-heading h2,
    .bkt-mid-cta-card h2,
    .bkt-final-card h2 {
        font-size: clamp(1.5rem, 7.2vw, 2rem);
        line-height: 1.72;
    }

    .bkt-section-heading p {
        font-size: .82rem;
        line-height: 2;
        text-align: justify;
        text-align-last: right;
    }

    .bkt-problem-grid,
    .bkt-feature-grid,
    .bkt-fields-grid,
    .bkt-library-grid,
    .bkt-comparison-grid,
    .bkt-related-grid {
        grid-template-columns: 1fr;
    }

    .bkt-info-card,
    .bkt-feature-card,
    .bkt-fields-grid article {
        min-height: auto;
        padding: 22px 18px;
        border-radius: 18px;
    }

    .bkt-workbench-shell {
        padding: 24px 14px;
        border-radius: 22px;
    }

    .bkt-workbench-shell .bkt-section-heading-start {
        text-align: center;
    }

    .bkt-stage-tabs {
        grid-template-columns: 1fr 1fr;
        overflow: visible;
    }

    .bkt-stage-tab {
        min-width: 0;
        min-height: 84px;
        grid-template-columns: 36px minmax(0, 1fr);
        padding: 11px;
    }

    .bkt-stage-tab > span {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .bkt-stage-tab b { font-size: .72rem; }
    .bkt-stage-tab small { font-size: .57rem; }

    .bkt-stage-panel {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 25px 18px;
        border-radius: 20px;
    }

    .bkt-stage-icon {
        width: 66px;
        height: 66px;
        border-radius: 21px;
        font-size: 1.45rem;
    }

    .bkt-stage-panel h3 {
        font-size: 1.05rem;
    }

    .bkt-stage-panel p {
        font-size: .78rem;
        line-height: 2;
    }

    .bkt-stage-panel ul {
        grid-template-columns: 1fr;
    }

    .bkt-mid-cta {
        padding-bottom: 60px;
    }

    .bkt-mid-cta-card,
    .bkt-final-card {
        padding: 27px 18px;
        border-radius: 22px;
    }

    .bkt-mid-cta-card p,
    .bkt-final-card p {
        font-size: .76rem;
        line-height: 1.95;
    }

    .bkt-library-toolbar {
        align-items: stretch;
        flex-direction: column;
        padding: 13px;
    }

    .bkt-library-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .bkt-library-filters button:first-child {
        grid-column: 1 / -1;
    }

    .bkt-library-count {
        text-align: center;
    }

    .bkt-book-card {
        grid-template-columns: 105px minmax(0, 1fr);
        min-height: 245px;
        gap: 14px;
        padding: 14px;
        border-radius: 19px;
    }

    .bkt-cover {
        min-height: 210px;
    }

    .bkt-cover span { font-size: .66rem; }
    .bkt-book-card h3 { font-size: .84rem; }
    .bkt-book-card-content > p { font-size: .62rem; }
    .bkt-book-card dl > div { font-size: .57rem; }

    .bkt-comparison-card {
        padding: 25px 19px;
        border-radius: 20px;
    }

    .bkt-cost-layout {
        gap: 22px;
    }

    .bkt-cost-layout .bkt-section-heading-start {
        text-align: center;
    }

    .bkt-cost-layout .bkt-section-heading-start p {
        text-align: justify;
        text-align-last: right;
    }

    .bkt-cost-factors > div {
        grid-template-columns: 46px minmax(0, 1fr);
        min-height: 76px;
        padding: 12px;
    }

    .bkt-cost-factors span {
        width: 43px;
        height: 43px;
    }

    .bkt-installment-card {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 22px 17px;
        text-align: center;
    }

    .bkt-installment-card .bkt-btn { width: 100%; }

    .bkt-process-list::before {
        right: 24px;
    }

    .bkt-process-list li {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 10px;
    }

    .bkt-process-list li > span {
        width: 50px;
        height: 50px;
        border-width: 5px;
    }

    .bkt-process-list li > div {
        padding: 15px 13px;
    }

    .bkt-stats-section {
        padding: 55px 0;
    }

    .bkt-stats-shell {
        padding: 25px 14px;
        border-radius: 23px;
    }

    .bkt-stats-heading h2 {
        font-size: 1.55rem;
    }

    .bkt-stats-heading p {
        font-size: .75rem;
    }

    .bkt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .bkt-stat-card {
        min-height: 203px;
        padding: 18px 8px 15px;
        border-radius: 17px;
    }

    .bkt-stat-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.05rem;
    }

    .bkt-stat-number {
        font-size: 1.65rem;
    }

    .bkt-stat-value > span { font-size: 1rem; }
    .bkt-stat-card h3 { font-size: .78rem; }
    .bkt-stat-card p { font-size: .62rem; }

    .bkt-testimonials-slider {
        padding: 0 0 48px;
    }

    .bkt-testimonials-page {
        grid-template-columns: 1fr;
        padding: 8px 1px 20px;
    }

    .bkt-testimonial-card {
        min-height: 350px;
        padding: 21px 17px 20px;
        border-radius: 19px;
    }

    .bkt-testimonials-nav {
        top: auto;
        bottom: 0;
        width: 38px;
        height: 38px;
        transform: none;
    }

    .bkt-testimonials-prev { right: calc(50% - 47px); }
    .bkt-testimonials-next { left: calc(50% - 47px); }

    .bkt-testimonials-action {
        flex-direction: column;
        align-items: stretch;
        padding: 19px 17px;
        text-align: center;
    }

    .bkt-testimonials-action .bkt-btn { width: 100%; }

    .bkt-faq-list button {
        min-height: 67px;
        font-size: .8rem;
    }

    .bkt-related-grid > a {
        min-height: 205px;
    }

    .bkt-final-cta {
        padding-bottom: 65px;
    }
}

@media (max-width: 390px) {
    .bkt-eyebrow,
    .bkt-language-badge {
        width: 100%;
        justify-content: center;
    }

    .bkt-stage-tabs {
        grid-template-columns: 1fr;
    }

    .bkt-library-filters {
        grid-template-columns: 1fr;
    }

    .bkt-library-filters button:first-child {
        grid-column: auto;
    }

    .bkt-book-card {
        grid-template-columns: 90px minmax(0, 1fr);
        padding: 12px;
    }

    .bkt-cover {
        min-height: 195px;
    }

    .bkt-stat-number {
        font-size: 1.42rem;
    }

    .bkt-stat-card h3 {
        font-size: .7rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .book-translation-page *,
    .book-translation-page *::before,
    .book-translation-page *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    [data-bkt-reveal] {
        opacity: 1;
        transform: none;
    }
}


/* Final hero trust cards layout */
@media (min-width: 992px) {
    .book-translation-page .bkt-hero-trust {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        width: 100% !important;
        max-width: 760px !important;
        margin: 20px 0 0 !important;
        padding: 0 !important;
        gap: 10px !important;
        align-items: stretch !important;
    }

    .book-translation-page .bkt-hero-trust li,
    .book-translation-page .bkt-hero-trust li:last-child {
        grid-column: auto !important;
        display: flex !important;
        min-width: 0 !important;
        min-height: 64px !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        margin: 0 !important;
        padding: 10px 12px !important;
        border: 1px solid rgba(113, 55, 223, .13) !important;
        border-radius: 14px !important;
        color: #4f5870 !important;
        background: rgba(255, 255, 255, .92) !important;
        box-shadow: 0 10px 24px rgba(42, 30, 85, .07) !important;
        font-size: .74rem !important;
        font-weight: 800 !important;
        line-height: 1.75 !important;
        text-align: center !important;
        white-space: normal !important;
    }

    .book-translation-page .bkt-hero-trust i {
        flex: 0 0 auto !important;
        margin: 0 !important;
        color: var(--bkt-primary) !important;
        font-size: 1rem !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .book-translation-page .bkt-hero-trust {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        width: 100% !important;
        max-width: 760px !important;
        margin: 20px auto 0 !important;
        padding: 0 !important;
        gap: 10px !important;
    }

    .book-translation-page .bkt-hero-trust li,
    .book-translation-page .bkt-hero-trust li:last-child {
        grid-column: auto !important;
        display: flex !important;
        min-width: 0 !important;
        min-height: 64px !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 10px !important;
        border: 1px solid rgba(113, 55, 223, .13) !important;
        border-radius: 14px !important;
        background: rgba(255, 255, 255, .92) !important;
        box-shadow: 0 10px 24px rgba(42, 30, 85, .07) !important;
        font-size: .73rem !important;
        line-height: 1.75 !important;
        text-align: center !important;
    }
}

@media (max-width: 767.98px) {
    .book-translation-page .bkt-hero-trust {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: none !important;
        margin: 18px 0 0 !important;
        gap: 9px !important;
    }

    .book-translation-page .bkt-hero-trust li,
    .book-translation-page .bkt-hero-trust li:last-child {
        grid-column: auto !important;
        min-height: 54px !important;
        justify-content: flex-start !important;
        padding: 10px 14px !important;
        border: 1px solid rgba(113, 55, 223, .12) !important;
        border-radius: 13px !important;
        background: #fff !important;
        box-shadow: 0 8px 20px rgba(42, 30, 85, .06) !important;
        text-align: right !important;
    }
}
