:root {
    --pk-blue: #073f67;
    --pk-blue-2: #0f5f8f;
    --pk-yellow: #ffd21f;
    --pk-red: #e94040;
    --pk-green: #17a65b;
    --pk-ink: #172235;
    --pk-muted: #607080;
    --pk-border: #dce5ec;
    --pk-soft: #f4f7f9;
    --pk-white: #ffffff;
    --pk-shadow: 0 10px 26px rgba(20, 53, 78, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--pk-ink);
    background: var(--pk-white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.45;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.pk-container {
    width: min(100% - 32px, 1220px);
    margin-inline: auto;
}

.pk-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--pk-white);
    box-shadow: 0 3px 10px rgba(20, 20, 20, 0.12);
}

.pk-topbar {
    width: min(100% - 32px, 1220px);
    min-height: 80px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 240px minmax(420px, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.pk-logo {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.pk-logo img {
    width: 190px;
    height: auto;
}

.pk-logo-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--pk-blue);
    background: #ffd414;
    border-radius: 6px;
    font-size: 27px;
}

.pk-brand {
    display: block;
    line-height: 0.88;
}

.pk-brand-line {
    display: flex;
    align-items: center;
    color: #164d73;
    font-size: 39px;
    font-weight: 900;
    letter-spacing: 0;
}

.pk-brand-labs {
    display: block;
    color: #f0bd00;
    font-size: 23px;
    font-weight: 900;
    letter-spacing: 0;
}

.pk-brand-bars {
    display: inline-grid;
    grid-auto-flow: column;
    gap: 3px;
    margin-left: 4px;
}

.pk-brand-bars span {
    width: 4px;
    height: 34px;
    background: #164d73;
}

.pk-brand-arrow {
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 34px solid #164d73;
}

.pk-header-search {
    min-width: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 142px minmax(260px, 1fr);
    align-items: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.22);
    border-radius: 7px;
}

.pk-location-button,
.pk-search-box {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pk-location-button {
    justify-content: flex-start;
    padding: 0 22px;
    color: var(--pk-white);
    background: #174d73;
    border: 1px solid #174d73;
    border-radius: 7px 0 0 7px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.pk-search-box {
    padding: 0 16px;
    color: #151922;
    background: var(--pk-white);
    border: 1px solid #cfd8df;
    border-left: 0;
    border-radius: 0 7px 7px 0;
}

.pk-search-box i {
    font-size: 18px;
}

.pk-header-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #293340;
    font-size: 12px;
}

.pk-header-search input::placeholder {
    color: #777;
}

.pk-quick-actions {
    position: relative;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(14px, 1.4vw, 20px);
    color: #10121a;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.pk-quick-actions a,
.pk-sign-action,
.pk-mobile-search-action,
.pk-mobile-menu-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.pk-sign-action {
    min-width: 0;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-weight: 900;
}

.pk-account-toggle span {
    display: block;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pk-account-toggle .fa-chevron-down {
    flex: 0 0 auto;
    font-size: 11px;
}

.pk-account-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 120;
    width: min(430px, 100vw);
    height: 100vh;
    padding: 34px 38px;
    color: #232832;
    background: #ffffff;
    box-shadow: -18px 0 38px rgba(23, 34, 53, 0.16);
    white-space: normal;
}

.pk-account-drawer[hidden],
.pk-account-backdrop[hidden] {
    display: none;
}

.pk-account-backdrop {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(2px);
}

.pk-account-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.pk-account-drawer-head strong {
    color: #202633;
    font-size: 20px;
    font-weight: 700;
}

.pk-account-drawer-head button {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.pk-account-drawer-head button i {
    color: #202633;
    font-size: 26px;
}

.pk-account-drawer p {
    margin: 0 0 6px;
    color: #2d333d;
    font-size: 16px;
    font-weight: 400;
}

.pk-account-drawer nav {
    margin-top: 28px;
    border-top: 1px solid #edf0f2;
}

.pk-account-drawer nav a,
.pk-account-drawer nav button {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 4px;
    color: #3c4149;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #edf0f2;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.pk-account-drawer nav i {
    width: 22px;
    color: #ffc400;
    -webkit-text-stroke: 1px #073f67;
    font-size: 18px;
    text-align: center;
}

.pk-mobile-search-action,
.pk-mobile-menu-button {
    display: none;
    justify-content: center;
    padding: 0;
    color: #111820;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.pk-quick-actions i,
.pk-mobile-search-action i,
.pk-mobile-menu-button i {
    color: #171922;
    font-size: 24px;
}

.pk-call-action span {
    display: grid;
    flex: 0 0 auto;
    gap: 1px;
    line-height: 1;
}

.pk-call-action small {
    color: #262a33;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.8px;
}

.pk-call-action strong {
    color: #1d2028;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.1px;
}

.pk-cart-icon {
    position: relative;
    display: inline-flex;
}

.pk-cart-icon em {
    position: absolute;
    right: -8px;
    top: -11px;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    color: var(--pk-white);
    background: #0d1117;
    border-radius: 50%;
    font-size: 11px;
    font-style: normal;
    line-height: 1;
}

.pk-cart-popover {
    position: absolute;
    top: 58px;
    right: 0;
    z-index: 80;
    width: min(400px, calc(100vw - 28px));
    padding: 20px 19px 19px;
    color: #000000;
    background: #fff6d8;
    border: 1px solid #8c8c8c;
    border-radius: 8px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
    white-space: normal;
}

.pk-cart-popover[hidden] {
    display: none;
}

.pk-cart-popover-arrow {
    position: absolute;
    top: -13px;
    right: 25px;
    width: 24px;
    height: 24px;
    background: #fff6d8;
    border-left: 1px solid #8c8c8c;
    border-top: 1px solid #8c8c8c;
    transform: rotate(45deg);
}

.pk-cart-popover-head {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-size: 18px;
    font-weight: 900;
}

.pk-cart-popover-head i {
    color: #23323f;
    font-size: 17px;
}

.pk-cart-popover-head strong,
.pk-cart-popover-head em {
    color: #004a75;
    font-style: normal;
}

.pk-cart-popover-list {
    margin-top: 20px;
    border-bottom: 1px solid #8e8e8e;
}

.pk-cart-popover-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 26px;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    border-top: 1px solid #8e8e8e;
}

.pk-cart-popover-item:first-child {
    border-top: 0;
}

.pk-cart-popover-item span {
    min-width: 0;
    overflow: hidden;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pk-cart-popover-item strong {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.pk-cart-popover-item button {
    width: 26px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #000000;
    background: transparent;
    border: 0;
    font-size: 20px;
    cursor: pointer;
}

.pk-cart-empty {
    margin: 18px 0 0;
    color: #5d6670;
    font-size: 14px;
}

.pk-cart-popover-total {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 19px;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.pk-cart-popover-total strong,
.pk-cart-popover-total em {
    color: #000000;
    font-style: normal;
    font-weight: 400;
}

.pk-cart-checkout {
    min-height: 56px;
    display: grid !important;
    place-items: center;
    margin-top: 20px !important;
    color: #ffffff !important;
    background: #174d73;
    border-radius: 28px;
    font-size: 18px !important;
    font-weight: 900;
}

.pk-menu-button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #111820;
    background: transparent;
    border: 0;
    border-radius: 4px;
    font-size: 28px;
    cursor: pointer;
}

.pk-nav-shell {
    background: #f1f1f1;
    border-top: 1px solid #f4f4f4;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.12);
}

.pk-nav {
    width: min(100% - 32px, 1220px);
    min-height: 48px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #080d19;
    font-size: 14px;
    font-weight: 900;
}

.pk-nav-links {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.8vw, 20px);
    flex: 1;
}

.pk-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.pk-nav a i {
    font-size: 12px;
}

.pk-nav-service i {
    color: #1b202c;
    font-size: 19px !important;
}

.pk-nav-service.pk-nav-push i {
    color: #e7aa0a;
}

.pk-nav-push {
    margin-left: auto;
}

.pk-rx {
    color: #111820;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
}

.pk-rx sub {
    font-size: 11px;
    line-height: 0;
}

.pk-account-page {
    padding: 26px 0 30px;
    background: #ffffff;
}

.pk-account-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 18px;
}

.pk-account-sidebar,
.pk-account-panel {
    border: 1px solid #d9dee3;
    border-radius: 4px;
    background: #ffffff;
}

.pk-account-sidebar {
    align-self: start;
    border-top: 5px solid var(--pk-yellow);
    overflow: hidden;
}

.pk-account-user {
    min-width: 0;
    padding: 18px 26px 14px;
    display: grid;
    gap: 4px;
}

.pk-account-user span {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    color: #ffffff;
    background: #004b73;
    border-radius: 50%;
    font-size: 30px;
}

.pk-account-user strong {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #1b2430;
    font-size: 18px;
}

.pk-account-user small {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: #3f4854;
    font-size: 16px;
}

.pk-account-user a {
    width: max-content;
    margin-top: 12px;
    padding: 10px 24px;
    color: #004b73;
    background: var(--pk-yellow);
    border-radius: 24px;
    font-weight: 800;
}

.pk-account-nav a,
.pk-account-nav button {
    width: 100%;
    min-height: 51px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    color: #48515f;
    background: #ffffff;
    border: 0;
    border-top: 1px solid #d9dee3;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
}

.pk-account-nav span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pk-account-nav i {
    width: 20px;
    color: #004b73;
}

.pk-account-nav a.is-active {
    color: #ffffff;
    background: #255a7d;
}

.pk-account-nav a.is-active i {
    color: #ffffff;
}

.pk-account-panel {
    min-height: 575px;
}

.pk-account-panel h1 {
    margin: 0;
    padding: 18px 18px;
    color: #004b73;
    border-bottom: 1px solid #d9dee3;
    font-size: 28px;
}

.pk-account-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 32px 12px;
}

.pk-account-stats article {
    min-height: 112px;
    position: relative;
    padding: 16px 92px 16px 54px;
    color: #ffffff;
    background: #004b73;
    border-radius: 4px;
}

.pk-account-stats article:first-child {
    color: #004b73;
    background: var(--pk-yellow);
}

.pk-account-stats strong,
.pk-account-stats span {
    display: block;
    font-size: 22px;
    font-weight: 900;
}

.pk-account-stats i {
    position: absolute;
    right: 36px;
    top: 28px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 52px;
}

.pk-account-stats article:first-child i {
    color: rgba(0, 75, 115, 0.55);
}

.pk-account-list,
.pk-account-table {
    padding: 22px;
}

.pk-account-list p,
.pk-account-table article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 16px 0;
    border-bottom: 1px solid #edf0f2;
}

.pk-account-table div {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.pk-account-list strong,
.pk-account-table strong {
    color: #172235;
    font-size: 16px;
}

.pk-account-list span,
.pk-account-table span {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #5d6670;
}

.pk-account-list span {
    text-align: right;
    word-break: break-word;
}

.pk-account-table em,
.pk-account-table b,
.pk-account-table a,
.pk-account-table button {
    align-self: center;
    color: #004b73;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
}

.pk-account-download {
    min-width: 142px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    color: #ffffff !important;
    background: #004b73;
    border-radius: 24px;
    font-size: 15px;
    border: 0;
    cursor: pointer;
}

.pk-account-download.is-disabled {
    color: #6f7884 !important;
    background: #eef2f5;
    font-weight: 800;
}

.pk-account-empty {
    margin: 0;
    color: #607080;
}

.pk-modal-open {
    overflow: hidden;
}

.pk-print-modal[hidden] {
    display: none;
}

.pk-print-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 20px;
}

.pk-print-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

.pk-print-dialog {
    position: relative;
    width: min(374px, 100%);
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
    overflow: hidden;
}

.pk-print-dialog header {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
    border-bottom: 1px solid #e4e7ec;
}

.pk-print-dialog h2 {
    margin: 0;
    color: #252b33;
    font-size: 24px;
    font-weight: 500;
}

.pk-print-dialog header button {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #808080;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.pk-print-actions {
    display: grid;
    gap: 11px;
    padding: 20px;
}

.pk-print-actions a {
    min-height: 42px;
    display: grid;
    place-items: center;
    border-radius: 4px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.pk-print-actions .is-primary {
    background: #7367f0;
}

.pk-print-actions .is-muted {
    background: #8e9398;
}

.pk-print-actions .is-cyan {
    background: #11c7d8;
}

@media (max-width: 900px) {
    .pk-account-layout {
        grid-template-columns: 1fr;
    }

    .pk-account-stats {
        grid-template-columns: 1fr;
    }

    .pk-account-panel {
        min-height: 360px;
    }
}

@media (max-width: 560px) {
    .pk-account-drawer {
        padding: 26px 24px;
    }

    .pk-account-drawer nav a,
    .pk-account-drawer nav button {
        font-size: 16px;
    }

    .pk-account-list p,
    .pk-account-table article {
        display: grid;
        gap: 8px;
    }

    .pk-account-stats article {
        padding-left: 24px;
    }
}

.pk-hero {
    padding: 18px 0 20px;
    background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.pk-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(290px, 0.85fr);
    gap: 22px;
}

.pk-offer {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    background:
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.82), transparent 30%),
        linear-gradient(120deg, #d8f2ff 0%, #c4eafa 50%, #f4fbff 100%);
    border-radius: 8px;
    box-shadow: var(--pk-shadow);
}

.pk-offer-copy {
    position: relative;
    z-index: 2;
    padding: 28px 28px 52px;
}

.pk-offer-copy p {
    margin: 0 0 4px;
    color: var(--pk-blue);
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
}

.pk-offer-copy h1 {
    width: fit-content;
    margin: 0 0 12px;
    padding: 5px 9px;
    color: var(--pk-blue);
    background: var(--pk-yellow);
    border-radius: 3px;
    font-size: 19px;
    line-height: 1.1;
    font-weight: 900;
}

.pk-free {
    color: var(--pk-blue);
    font-size: 62px;
    line-height: 0.92;
    font-weight: 900;
}

.pk-free span {
    display: inline-block;
    color: var(--pk-red);
    font-size: 24px;
    vertical-align: middle;
}

.pk-offer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.pk-offer-badges span {
    padding: 8px 10px;
    color: var(--pk-blue);
    background: rgba(255, 255, 255, 0.82);
    border: 1px dashed rgba(7, 63, 103, 0.28);
    border-radius: 6px;
    font-weight: 800;
}

.pk-offer-people {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 0;
    padding: 20px 24px 0 0;
}

.pk-offer-people img {
    width: 190px;
    height: 228px;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px 8px 0 0;
    filter: drop-shadow(0 14px 18px rgba(7, 63, 103, 0.18));
}

.pk-offer-people img + img {
    margin-left: -48px;
}

.pk-offer-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 40px;
    padding: 8px 16px;
    color: var(--pk-white);
    background: var(--pk-blue);
    font-weight: 800;
}

.pk-offer-bottom strong {
    color: var(--pk-yellow);
}

.pk-booking-card {
    padding: 22px;
    background: var(--pk-white);
    border: 1px solid var(--pk-border);
    border-radius: 8px;
    box-shadow: var(--pk-shadow);
}

.pk-booking-card h2,
.pk-section h2,
.pk-band h2,
.pk-app-band h2,
.pk-seo h2 {
    margin: 0;
    color: #172235;
    font-size: 20px;
    line-height: 1.2;
}

.pk-booking-card form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.pk-booking-card input[type='text'],
.pk-booking-card input[type='tel'] {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border: 0;
    border-bottom: 1px solid #b8c7d2;
    outline: 0;
}

.pk-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--pk-muted);
    font-size: 11px;
}

.pk-booking-card button,
.pk-card-actions button,
.pk-card-actions a,
.pk-risk-item a,
.pk-promo a,
.pk-section-head a,
.pk-blog-grid a,
.pk-store-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 16px;
    color: var(--pk-white);
    background: var(--pk-blue);
    border: 1px solid var(--pk-blue);
    border-radius: 18px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.pk-booking-card button {
    justify-self: end;
    min-height: 38px;
}

.pk-service-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 22px 0 14px;
}

.pk-service-strip div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #31485d;
    font-size: 12px;
    font-weight: 800;
}

.pk-service-strip i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--pk-blue);
    background: #eef8fc;
    border-radius: 50%;
}

.pk-section {
    padding: 26px 0;
}

.pk-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.pk-section-head a {
    min-height: 28px;
    padding-inline: 18px;
}

.pk-card-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.pk-package-card,
.pk-test-card,
.pk-reason-grid article,
.pk-review-grid article,
.pk-blog-grid article {
    overflow: hidden;
    background: var(--pk-white);
    border: 1px solid var(--pk-border);
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(20, 53, 78, 0.07);
}

.pk-package-card img {
    width: 100%;
    aspect-ratio: 1.9 / 1;
    object-fit: cover;
}

.pk-card-body {
    padding: 14px;
}

.pk-package-card h3,
.pk-test-card h3,
.pk-risk-item h3,
.pk-promo h3,
.pk-reason-grid h3,
.pk-blog-grid h3 {
    margin: 0;
    color: var(--pk-ink);
    font-size: 14px;
    line-height: 1.3;
}

.pk-package-card p,
.pk-test-card p,
.pk-promo p,
.pk-reason-grid p,
.pk-review-grid p,
.pk-app-band p,
.pk-seo p,
.pk-footer p {
    margin: 6px 0 0;
    color: var(--pk-muted);
    font-size: 12px;
}

.pk-price-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.pk-price-line strong {
    color: var(--pk-red);
    font-size: 15px;
}

.pk-price-line del {
    color: #7d8b96;
    font-size: 12px;
}

.pk-price-line span {
    margin-left: auto;
    padding: 4px 7px;
    color: #1d2a35;
    background: var(--pk-yellow);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
}

.pk-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}

.pk-card-actions a {
    color: var(--pk-blue);
    background: var(--pk-white);
}

.pk-test-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.pk-test-card {
    padding: 18px;
}

.pk-test-price {
    margin-top: 12px;
    padding: 9px 12px;
    color: var(--pk-ink);
    background: #f1f5f8;
    border-radius: 4px;
    font-weight: 900;
}

.pk-band {
    padding: 28px 0;
    background: #f2f4f6;
}

.pk-risk-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.pk-risk-item {
    text-align: center;
}

.pk-risk-item span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    color: var(--pk-red);
    background: var(--pk-white);
    border-radius: 50%;
    box-shadow: 0 5px 16px rgba(20, 53, 78, 0.08);
}

.pk-risk-item i {
    font-size: 24px;
}

.pk-risk-item a {
    min-height: 26px;
    margin-top: 9px;
    padding-inline: 14px;
    text-transform: uppercase;
}

.pk-condition-row {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.pk-condition-row a {
    min-height: 76px;
    display: grid;
    place-items: center;
    gap: 8px;
    color: #293d50;
    font-size: 12px;
    font-weight: 800;
}

.pk-condition-row i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--pk-blue);
    background: #fbfcfd;
    border: 1px dashed var(--pk-border);
    border-radius: 50%;
}

.pk-promo-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 18px;
}

.pk-promo {
    min-height: 190px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(160px, 0.8fr) minmax(0, 1fr);
    border-radius: 8px;
}

.pk-promo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pk-promo div {
    padding: 24px;
}

.pk-promo-dark {
    color: var(--pk-white);
    background: #5b0e0e;
}

.pk-promo-dark h3,
.pk-promo-dark p {
    color: var(--pk-white);
}

.pk-promo-light {
    background: #e9eef3;
}

.pk-promo-light strong {
    color: var(--pk-blue);
    font-size: 48px;
    line-height: 1;
}

.pk-promo a {
    min-height: 28px;
    margin-top: 14px;
    padding-inline: 14px;
}

.pk-app-band {
    padding: 38px 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(7, 63, 103, 0.035) 25%, transparent 25%) 0 0 / 44px 44px,
        linear-gradient(225deg, rgba(7, 63, 103, 0.035) 25%, transparent 25%) 0 0 / 44px 44px,
        #fbfcfd;
}

.pk-app-grid {
    display: grid;
    grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1fr);
    align-items: center;
    gap: 44px;
}

.pk-phone {
    width: 170px;
    height: 320px;
    justify-self: center;
    padding: 12px;
    background: #092d49;
    border: 8px solid #20384a;
    border-radius: 30px;
    box-shadow: 0 18px 34px rgba(20, 53, 78, 0.22);
    transform: rotate(-8deg);
}

.pk-phone-screen {
    width: 100%;
    height: 100%;
    padding: 22px 14px;
    color: var(--pk-white);
    background: linear-gradient(180deg, #0b4d78, #071b2a);
    border-radius: 18px;
}

.pk-phone-screen span {
    display: block;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    background: var(--pk-yellow);
    border-radius: 10px;
}

.pk-phone-screen strong {
    color: var(--pk-yellow);
    font-size: 20px;
}

.pk-phone-screen p {
    color: #d9eaf3;
}

.pk-phone-screen div {
    height: 46px;
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.pk-store-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pk-store-row a {
    min-height: 36px;
    color: var(--pk-white);
    background: #111820;
    border-color: #111820;
    border-radius: 6px;
}

.pk-reason-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.pk-reason-grid article {
    min-height: 132px;
    padding: 18px;
}

.pk-reason-grid i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    color: var(--pk-blue);
    background: #eef8fc;
    border-radius: 50%;
}

.pk-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pk-video-grid article {
    position: relative;
}

.pk-video-grid img {
    width: 100%;
    aspect-ratio: 2.1 / 1;
    object-fit: cover;
    border-radius: 6px;
}

.pk-video-grid span {
    position: absolute;
    inset: 0;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin: auto;
    color: var(--pk-white);
    background: #f05b22;
    border-radius: 50%;
}

.pk-video-grid p {
    margin: 8px 0 0;
    color: #2d4356;
    font-size: 12px;
    font-weight: 700;
}

.pk-review-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.pk-review-grid article {
    padding: 16px;
}

.pk-review-grid article > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pk-review-grid span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--pk-white);
    background: #8b5cf6;
    border-radius: 50%;
    font-weight: 900;
}

.pk-stars {
    color: #ff9e0d !important;
    letter-spacing: 0;
}

.pk-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.pk-blog-grid img {
    width: 100%;
    aspect-ratio: 1.65 / 1;
    object-fit: cover;
}

.pk-blog-grid div {
    padding: 14px;
}

.pk-blog-grid a {
    min-height: 30px;
    margin-top: 14px;
}

.pk-seo {
    padding: 34px 0;
}

.pk-link-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin: 12px 0 30px;
}

.pk-link-columns ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pk-link-columns li {
    position: relative;
    padding-left: 13px;
    margin: 6px 0;
    color: #405569;
    font-size: 12px;
}

.pk-link-columns li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 4px;
    height: 4px;
    background: var(--pk-blue);
    border-radius: 50%;
}

.pk-footer {
    background: #f6f8fa;
    border-top: 1px solid var(--pk-border);
}

.pk-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    padding: 34px 0;
}

.pk-footer h3 {
    margin: 0 0 12px;
    color: var(--pk-blue);
    font-size: 15px;
}

.pk-footer a {
    display: block;
    margin: 7px 0;
    color: #3e5368;
    font-size: 12px;
}

.pk-footer-bottom {
    color: #111820;
    background: var(--pk-yellow);
    font-size: 13px;
    font-weight: 800;
}

.pk-footer-bottom .pk-container {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pk-socials {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.pk-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--pk-white);
    background: #20b15a;
    border: 3px solid var(--pk-white);
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    font-size: 24px;
}

@media (max-width: 1100px) {
    .pk-header {
        max-width: 100vw;
        overflow-x: clip;
    }

    .pk-topbar {
        width: calc(100vw - 24px);
        min-height: 72px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        padding: 0;
    }

    .pk-logo {
        flex: 0 0 auto;
    }

    .pk-header-search {
        display: none;
    }

    .pk-header.is-search-open .pk-header-search {
        order: 3;
        flex: 0 0 100%;
        width: 100%;
        max-width: none;
        display: grid;
        grid-template-columns: 142px minmax(0, 1fr);
        margin-bottom: 10px;
    }

    .pk-quick-actions {
        min-width: 0;
        flex: 0 0 auto;
        margin-left: auto;
        position: fixed;
        top: 15px;
        right: 18px;
        z-index: 61;
        width: 150px;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 11px;
        font-size: 0;
    }

    .pk-cart-popover {
        top: 52px;
        right: -8px;
        font-size: 14px;
    }

    .pk-logo img {
        width: 180px;
    }

    .pk-mobile-search-action,
    .pk-mobile-menu-button {
        width: 30px;
        height: 42px;
        display: inline-flex;
        align-items: center;
    }

    .pk-call-action {
        display: none !important;
    }

    .pk-sign-action span,
    .pk-cart-action > span:last-child {
        display: none;
    }

    .pk-nav-shell {
        display: none;
    }

    .pk-header.is-menu-open .pk-nav-shell {
        display: block;
    }

    .pk-nav {
        width: calc(100vw - 24px);
        align-items: flex-start;
        height: auto;
        min-height: auto;
        padding: 10px 0;
        flex-wrap: wrap;
        gap: 8px 14px;
    }

    .pk-nav > .pk-menu-button {
        display: none;
    }

    .pk-nav-links {
        width: 100%;
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        gap: 8px;
        padding: 2px 0 8px;
    }

    .pk-nav.is-open .pk-nav-links {
        display: grid;
    }

    .pk-nav a {
        min-height: 42px;
        justify-content: space-between;
        padding: 8px 12px;
        white-space: normal;
        background: var(--pk-white);
        border: 1px solid var(--pk-border);
        border-radius: 6px;
    }

    .pk-nav-push {
        margin-left: 0;
    }

    .pk-hero-grid,
    .pk-promo-grid {
        grid-template-columns: 1fr;
    }

    .pk-card-row,
    .pk-test-grid,
    .pk-blog-grid,
    .pk-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pk-service-strip,
    .pk-reason-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pk-condition-row {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .pk-container,
    .pk-topbar,
    .pk-nav {
        width: calc(100vw - 24px);
    }

    .pk-topbar {
        gap: 10px;
        padding: 0;
    }

    .pk-header.is-search-open .pk-header-search {
        grid-template-columns: 132px minmax(0, 1fr);
    }

    .pk-location-button,
    .pk-search-box {
        min-height: 46px;
    }

    .pk-location-button {
        padding-inline: 14px;
        font-size: 15px;
    }

    .pk-search-box {
        padding-inline: 12px;
    }

    .pk-logo img {
        width: 176px;
    }

    .pk-brand-line {
        font-size: 31px;
    }

    .pk-brand-labs {
        font-size: 19px;
    }

    .pk-logo-mark {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .pk-brand-bars span {
        height: 27px;
    }

    .pk-brand-arrow {
        border-top-width: 14px;
        border-bottom-width: 14px;
        border-left-width: 27px;
    }

    .pk-quick-actions {
        justify-content: flex-end;
        gap: 8px;
        overflow: visible;
    }

    .pk-offer {
        grid-template-columns: 1fr;
    }

    .pk-offer-copy {
        padding: 22px 18px 10px;
    }

    .pk-offer-copy p {
        font-size: 24px;
    }

    .pk-offer-copy h1 {
        font-size: 16px;
    }

    .pk-free {
        font-size: 52px;
    }

    .pk-offer-people {
        padding: 0 10px 38px;
    }

    .pk-offer-people img {
        width: 150px;
        height: 176px;
    }

    .pk-offer-bottom {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .pk-service-strip,
    .pk-risk-row,
    .pk-reason-grid,
    .pk-video-grid,
    .pk-footer-grid,
    .pk-link-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pk-condition-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pk-promo {
        grid-template-columns: 1fr;
    }

    .pk-promo img {
        height: 180px;
    }

    .pk-app-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .pk-store-row {
        justify-content: center;
    }
}

@media (max-width: 540px) {
    body {
        font-size: 13px;
    }

    .pk-header.is-search-open .pk-header-search {
        grid-template-columns: 1fr;
        box-shadow: none;
        gap: 8px;
    }

    .pk-topbar {
        min-height: 72px;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .pk-logo img {
        width: 152px;
    }

    .pk-quick-actions {
        grid-column: 2;
        grid-row: 1;
        width: 135px;
        display: flex;
        right: auto;
        left: clamp(170px, calc(100vw - 145px), 225px);
        justify-content: space-between;
        gap: 5px;
        font-size: 0;
    }

    .pk-quick-actions a,
    .pk-mobile-search-action,
    .pk-mobile-menu-button {
        width: 30px;
        min-width: 0;
        height: 42px;
        min-height: 0;
        justify-content: center;
        padding: 0;
        white-space: normal;
        background: transparent;
        border: 0;
        border-radius: 0;
    }

    .pk-call-action small {
        font-size: 10px;
    }

    .pk-call-action strong {
        font-size: 12px;
    }

    .pk-location-button,
    .pk-search-box {
        border-radius: 8px;
        border: 1px solid var(--pk-border);
    }

    .pk-search-box {
        border-left: 1px solid var(--pk-border);
        box-shadow: 0 2px 7px rgba(0, 0, 0, 0.14);
    }

    .pk-quick-actions i,
    .pk-mobile-search-action i,
    .pk-mobile-menu-button i {
        font-size: 23px;
    }

    .pk-nav-links {
        grid-template-columns: 1fr;
    }

    .pk-card-row,
    .pk-test-grid,
    .pk-blog-grid,
    .pk-review-grid,
    .pk-service-strip,
    .pk-risk-row,
    .pk-reason-grid,
    .pk-video-grid,
    .pk-footer-grid,
    .pk-link-columns {
        grid-template-columns: 1fr;
    }

    .pk-condition-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pk-section-head {
        align-items: flex-start;
    }

    .pk-section-head h2 {
        max-width: 70%;
    }

    .pk-card-actions {
        grid-template-columns: 1fr;
    }

    .pk-footer-bottom .pk-container {
        flex-direction: column;
        justify-content: center;
        padding: 10px 0;
        text-align: center;
    }
}
