:root {
    --kesim-primary: #00a88e;
    --kesim-primary-dark: #007866;
    --kesim-accent: #4dff88;
    --kesim-ink: #121817;
    --kesim-muted: #52615f;
    --kesim-line: #d9e4e1;
    --kesim-panel: #ffffff;
    --kesim-soft: #edf8f5;
    --kesim-footer: #263330;
    --kesim-shadow: 0 18px 48px rgba(23, 56, 50, 0.12);
}

body.kesim-modal-open {
    overflow: hidden;
}

.kesim-device-modal[hidden] {
    display: none !important;
}

.kesim-device-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 46px 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.kesim-device-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.kesim-device-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(19, 22, 21, 0.58);
    backdrop-filter: blur(3px);
}

.kesim-device-dialog {
    position: relative;
    width: min(842px, calc(100vw - 96px));
    max-height: calc(100vh - 80px);
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
    color: #222625;
    outline: none;
}

.kesim-device-dialog-scroll {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 34px 56px 48px;
    scrollbar-color: var(--kesim-primary) #eef4f2;
    scrollbar-width: thin;
}

.kesim-device-dialog-scroll::-webkit-scrollbar {
    width: 10px;
}

.kesim-device-dialog-scroll::-webkit-scrollbar-track {
    background: #eef4f2;
}

.kesim-device-dialog-scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--kesim-primary);
}

.kesim-device-close {
    position: absolute;
    top: -44px;
    right: 2px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 30px;
}

.kesim-device-dialog-header {
    text-align: center;
}

.kesim-device-dialog-header h2 {
    margin: 0 0 8px;
    color: #202020;
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.08;
    white-space: nowrap;
}

.kesim-device-dialog-header p {
    width: min(100%, 640px);
    margin: 0 auto;
    color: #686868;
    font-size: 14px;
    line-height: 1.45;
}

.kesim-device-tabs {
    display: flex;
    width: min(100%, 585px);
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 0;
    margin: 60px auto 58px;
}

.kesim-device-tab {
    min-height: 40px;
    border: 0;
    background: #eff3f6;
    color: #222625;
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    line-height: 1;
    padding: 0 14px;
}

.kesim-device-tab:first-child,
.kesim-device-tab:nth-child(8) {
    border-radius: 999px 0 0 999px;
}

.kesim-device-tab:nth-child(7),
.kesim-device-tab:last-child {
    border-radius: 0 999px 999px 0;
}

.kesim-device-tab.is-active {
    border-radius: 999px;
    background: var(--kesim-primary);
    color: #ffffff;
}

.kesim-device-tab:focus {
    outline: 2px solid rgba(0, 168, 142, 0.45);
    outline-offset: 2px;
}

.kesim-device-panel h3 {
    margin: 0 0 16px;
    color: #4a4a4a;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.2;
}

.kesim-device-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
}

.kesim-device-column h4 {
    margin: 0 0 16px;
    color: #4b4f4e;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.kesim-device-list {
    display: grid;
    gap: 17px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kesim-device-item {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: #595f5e;
    font-size: 17px;
    line-height: 1.45;
}

.kesim-device-check {
    color: var(--kesim-primary);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.kesim-device-note-title {
    margin-top: 46px !important;
}

.kesim-device-note {
    margin: 0;
    color: #595f5e;
    font-size: 16px;
    line-height: 1.55;
}

@media (max-width: 760px) {
    .kesim-device-modal {
        padding: 44px 12px 18px;
    }

    .kesim-device-dialog {
        width: 100%;
        max-height: calc(100vh - 62px);
    }

    .kesim-device-dialog-scroll {
        max-height: calc(100vh - 62px);
        padding: 28px 22px 34px;
    }

    .kesim-device-close {
        top: -40px;
        right: 0;
        font-size: 42px;
    }

    .kesim-device-dialog-header h2 {
        font-size: 34px;
        white-space: normal;
    }

    .kesim-device-dialog-header p {
        font-size: 13px;
    }

    .kesim-device-tabs {
        width: 100%;
        margin: 34px auto 36px;
    }

    .kesim-device-tab,
    .kesim-device-tab:first-child,
    .kesim-device-tab:nth-child(7),
    .kesim-device-tab:nth-child(8),
    .kesim-device-tab:last-child {
        flex: 1 1 auto;
        border-radius: 999px;
        padding: 0 13px;
    }

    .kesim-device-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .kesim-device-item {
        font-size: 16px;
    }
}

* {
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
    scrollbar-color: var(--kesim-primary) #edf3f1;
    scrollbar-width: thin;
}

html::-webkit-scrollbar {
    width: 14px;
}

html::-webkit-scrollbar-track {
    background: #edf3f1;
}

html::-webkit-scrollbar-thumb {
    min-height: 48px;
    border: 3px solid #edf3f1;
    border-radius: 999px;
    background: var(--kesim-primary);
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--kesim-primary-dark);
}

body.kaspersky-theme {
    margin: 0;
    min-width: 320px;
    color: var(--kesim-ink);
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(92, 133, 150, 0.25);
    padding: 12px 0;
}

.nav-bar {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-link img {
    width: auto;
    height: 64px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--kesim-muted);
    font-size: 15px;
}

.nav-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111;
    transition: color 0.2s ease;
}

.nav-action svg,
.mobile-actions svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.nav-action:hover,
.nav-action:focus {
    color: var(--kesim-primary-dark);
}

.mobile-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

.mobile-actions a {
    color: var(--kesim-primary-dark);
    font-weight: 800;
}

.mobile-actions button {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--kesim-line);
    border-radius: 4px;
    background: #f3f7f6;
    color: #111;
}

.mobile-menu {
    display: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.store-hero {
    position: relative;
    min-height: 630px;
    overflow: hidden;
}

.store-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 85% center;
}

.store-hero-content {
    position: relative;
    z-index: 1;
    padding: 48px 0 64px;
}

.store-hero-copy {
    width: min(560px, 100%);
}

.store-hero h1 {
    margin: 0 0 6px;
    font-size: 40px;
    line-height: 1.18;
    font-weight: 800;
}

.store-hero-subtitle {
    margin: 0 0 22px;
    color: #111;
    font-size: 38px;
    line-height: 1.05;
    font-weight: 500;
}

.store-hero-note {
    margin: 0 0 28px;
    color: var(--kesim-muted);
    font-size: 18px;
    font-weight: 300;
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.store-badges a {
    height: 68px;
    transition: transform 0.2s ease;
}

.store-badges a:hover,
.store-badges a:focus {
    transform: scale(1.04);
}

.store-badges img {
    width: auto;
    height: 100%;
}

.store-search {
    position: relative;
    display: block;
    width: min(100%, 580px);
}

.store-search input {
    width: 100%;
    height: 56px;
    border: 1px solid var(--kesim-primary);
    border-radius: 4px;
    padding: 0 54px 0 18px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--kesim-ink);
    font: inherit;
}

.store-search svg {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    fill: #8b9694;
}

.plans-panel {
    position: relative;
    z-index: 2;
    margin-top: -52px;
}

.plans-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.plans-tabs button {
    width: min(354px, calc(50% - 8px));
    border: 3px solid #dbfee9;
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.8);
    color: #111;
    font: inherit;
    font-size: 24px;
    font-weight: 700;
}

.plans-tabs .active {
    background: #dbfee9;
}

.plans-box {
    width: calc(100% - 40px);
    margin: 0 auto;
    border-radius: 0 0 24px 24px;
    padding: 44px 0 54px;
    background: linear-gradient(35deg, rgba(61, 232, 202, 0.22), rgba(77, 255, 136, 0.22)), #ffffff;
}

.plans-box h2,
.section-title {
    margin: 0 0 34px;
    color: #111;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
}

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

.destination-card {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid #bdebe0;
    border-radius: 8px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.72);
    color: #111;
    font-weight: 700;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.destination-card:hover,
.destination-card:focus {
    border-color: var(--kesim-primary);
    background: #fff;
}

.destination-card span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.destination-card img {
    width: 28px;
    height: 20px;
    border-radius: 2px;
    object-fit: cover;
}

.destination-card svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.expand-link {
    display: flex;
    width: min(100%, 410px);
    min-height: 58px;
    align-items: center;
    justify-content: center;
    margin: 28px auto 0;
    border: 2px solid #111;
    border-radius: 4px;
    font-weight: 800;
}

.benefit-section {
    padding: 56px 0 36px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1.08fr 1fr 1fr;
    grid-template-rows: 210px 250px;
    gap: 8px;
}

.benefit-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #d6eeea;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 168, 142, 0.14);
}

.benefit-card div {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.benefit-card h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.2;
}

.benefit-card p {
    margin: 0;
    color: #34413f;
}

.benefit-card img {
    position: absolute;
    inset: auto 0 0;
    width: 100%;
    height: 68%;
    object-fit: cover;
}

.benefit-tall {
    grid-row: span 2;
}

.benefit-wide {
    grid-column: span 2;
}

.benefit-wide img {
    inset: 0 0 0 auto;
    width: 42%;
    height: 100%;
}

.benefit-wide div {
    width: 58%;
}

.how-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 54px 0 64px;
}

.how-copy h2 {
    margin: 0 0 28px;
    font-size: 30px;
}

.how-copy ol {
    display: grid;
    gap: 14px;
    margin: 0;
    padding-left: 24px;
}

.how-copy li::marker {
    color: var(--kesim-primary);
    font-weight: 800;
}

.how-section > img {
    width: min(100%, 520px);
    justify-self: center;
    filter: drop-shadow(0 28px 38px rgba(0, 168, 142, 0.16));
}

.faq-section {
    padding: 0 0 78px;
}

.faq-list {
    width: min(960px, 100%);
    margin: 0 auto;
}

.faq-list details {
    border-bottom: 1px solid #e4eeee;
}

.faq-list summary {
    display: flex;
    min-height: 54px;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::before {
    content: "+";
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border: 1px solid var(--kesim-primary);
    border-radius: 3px;
    color: var(--kesim-primary);
    font-weight: 800;
}

.hero-section {
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 28px;
    padding: 44px 0 72px;
}

.hero-logo {
    justify-self: center;
}

.hero-logo img {
    width: min(250px, 76vw);
    height: auto;
}

.hero-panel {
    width: min(100%, 980px);
    margin: 0 auto;
    padding: 44px 28px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(61, 232, 202, 0.22), rgba(77, 255, 136, 0.22)), #ffffff;
    text-align: center;
    box-shadow: var(--kesim-shadow);
}

.hero-panel h1 {
    margin: 0 0 10px;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-panel p {
    margin: 0;
    color: var(--kesim-muted);
    font-size: 19px;
    font-weight: 700;
}

.posts-section {
    width: min(1360px, calc(100% - 32px));
    padding: 42px 0 74px;
}

.post-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
}

.post-card {
    display: grid;
    grid-template-columns: minmax(190px, 42%) minmax(0, 1fr);
    min-height: 154px;
    overflow: hidden;
    border: 1px solid var(--kesim-line);
    border-radius: 8px;
    background: var(--kesim-panel);
    box-shadow: 0 6px 18px rgba(18, 24, 23, 0.07);
}

.post-image {
    display: block;
    min-height: 154px;
    background: linear-gradient(135deg, var(--kesim-soft), #dff6ed);
}

.post-image img {
    width: 100%;
    height: 100%;
    min-height: 154px;
    object-fit: cover;
}

.post-image-fallback {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 154px;
    place-items: center;
    padding: 24px;
    color: var(--kesim-primary-dark);
    font-weight: 800;
    text-align: center;
}

.post-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
    min-width: 0;
    padding: 16px 18px;
}

.post-card-body:only-child {
    grid-column: 1 / -1;
}

.article-header time {
    color: var(--kesim-primary-dark);
    font-size: 12px;
    font-weight: 700;
}

.post-card h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
}

.post-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--kesim-muted);
    font-size: 13px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.read-link,
.pager-link {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--kesim-primary);
    border-radius: 6px;
    padding: 6px 12px;
    color: var(--kesim-primary-dark);
    font-size: 13px;
    font-weight: 700;
}

.read-link:hover,
.read-link:focus,
.pager-link:hover,
.pager-link:focus {
    background: var(--kesim-primary);
    color: #ffffff;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
    color: var(--kesim-muted);
}

.pager-status {
    font-weight: 700;
}

.empty-state {
    margin: 0;
    padding: 36px;
    border: 1px solid var(--kesim-line);
    border-radius: 8px;
    background: var(--kesim-soft);
    color: var(--kesim-muted);
    text-align: center;
}

.article-shell {
    width: min(900px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 76px;
}

.article-header {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
    text-align: center;
}

.article-logo {
    justify-self: center;
}

.article-logo img {
    width: min(230px, 72vw);
}

.article-kicker {
    margin: 0;
    color: var(--kesim-primary-dark);
    font-weight: 800;
    text-transform: uppercase;
}

.article-header h1 {
    margin: 0;
    font-size: 40px;
    line-height: 1.16;
}

.article-hero,
.comparison-image {
    margin: 0 0 34px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--kesim-soft);
}

.article-hero img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.comparison-image {
    margin-top: 34px;
    border: 1px solid var(--kesim-line);
}

.comparison-image img {
    width: 100%;
    height: auto;
}

.rich-text {
    overflow-x: auto;
    color: #1f2a28;
    font-size: 18px;
}

.rich-text h1,
.rich-text h2,
.rich-text h3 {
    margin: 34px 0 12px;
    line-height: 1.2;
}

.rich-text h1 {
    font-size: 34px;
}

.rich-text h2 {
    font-size: 28px;
}

.rich-text h3 {
    font-size: 23px;
}

.rich-text p,
.rich-text ul,
.rich-text ol,
.rich-text table,
.rich-text blockquote {
    margin: 0 0 18px;
}

.rich-text table {
    width: 100%;
    min-width: 680px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #b9cbc7;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(18, 24, 23, 0.06);
    font-size: 15px;
    line-height: 1.45;
}

.rich-text th,
.rich-text td {
    border-right: 1px solid #cbdad7;
    border-bottom: 1px solid #cbdad7;
    padding: 11px 14px;
    text-align: start;
    vertical-align: top;
}

.rich-text th {
    background: #dbeae7;
    color: #111;
    font-weight: 800;
}

.rich-text th:last-child,
.rich-text td:last-child {
    border-right: 0;
}

.rich-text tbody tr:last-child td {
    border-bottom: 0;
}

.rich-text tbody tr:nth-child(even) {
    background: #f6faf9;
}

.rich-text a {
    color: var(--kesim-primary-dark);
    font-weight: 700;
    text-decoration: underline;
}

.rich-text blockquote {
    border-left: 4px solid var(--kesim-primary);
    padding: 12px 18px;
    background: var(--kesim-soft);
    color: var(--kesim-muted);
}

.article-page {
    padding-bottom: 116px;
}

.sticky-cta {
    position: fixed;
    right: 0;
    bottom: 18px;
    left: 0;
    z-index: 40;
    padding: 0 16px;
    pointer-events: none;
}

.sticky-cta-inner {
    width: min(760px, 100%);
    margin: 0 auto;
    border: 1px solid rgba(217, 228, 225, 0.86);
    border-radius: 8px;
    padding: 14px 16px 10px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(18, 24, 23, 0.18);
    pointer-events: auto;
}

.sticky-cta-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.sticky-cta-button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sticky-cta-button:hover,
.sticky-cta-button:focus {
    transform: translateY(-1px);
}

.sticky-cta-button-primary {
    border: 2px solid var(--kesim-accent);
    background: var(--kesim-accent);
    color: #08221b;
}

.sticky-cta-button-primary:hover,
.sticky-cta-button-primary:focus {
    border-color: var(--kesim-primary);
    background: var(--kesim-primary);
    color: #ffffff;
}

.sticky-cta-button-secondary {
    border: 2px solid #111111;
    background: #ffffff;
    color: #111111;
}

.sticky-cta-button-secondary:hover,
.sticky-cta-button-secondary:focus {
    background: #111111;
    color: #ffffff;
}

.sticky-cta p {
    margin: 8px 0 0;
    color: var(--kesim-muted);
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
}

.site-footer {
    background: var(--kesim-footer);
    color: #cbd9d6;
}

.footer-inner {
    display: flex;
    min-height: 104px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
}

.footer-copy {
    display: grid;
    gap: 6px;
}

.footer-copy p {
    margin: 0;
    font-size: 14px;
}

.footer-inner nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
}

.footer-inner a {
    color: #ffffff;
}

.footer-inner span {
    color: #cbd9d6;
}

.map-shell {
    min-height: 58vh;
    padding: 44px 0 64px;
}

.map-section {
    width: min(1120px, calc(100% - 32px));
}

.map-section h1 {
    margin: 8px 0 10px;
    font-size: 38px;
    line-height: 1.16;
}

.map-summary {
    margin: 0 0 22px;
    color: var(--kesim-muted);
}

.map-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.map-list li {
    display: block;
    align-items: center;
    border: 1px solid var(--kesim-line);
    border-radius: 8px;
    padding: 13px 16px;
    background: #ffffff;
}

.map-list a {
    display: block;
    color: var(--kesim-primary-dark);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.28;
}

@media (max-width: 760px) {
    .container,
    .article-shell {
        width: min(100% - 24px, 1120px);
    }

    .site-header {
        padding: 6px 0;
    }

    .nav-bar {
        min-height: 48px;
    }

    .desktop-actions {
        display: none;
    }

    .mobile-actions {
        display: flex;
    }

    .mobile-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 30;
        display: block;
        border-top: 1px solid var(--kesim-line);
        background: #ffffff;
        box-shadow: 0 16px 32px rgba(18, 24, 23, 0.14);
    }

    .mobile-menu[hidden] {
        display: none;
    }

    .mobile-menu-inner {
        display: grid;
        gap: 0;
        padding-top: 10px;
        padding-bottom: 14px;
    }

    .mobile-menu a,
    .mobile-menu-settings {
        display: flex;
        min-height: 48px;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #edf3f1;
        color: #111;
        font-weight: 700;
    }

    .mobile-menu a:hover,
    .mobile-menu a:focus {
        color: var(--kesim-primary-dark);
    }

    .mobile-menu-login {
        justify-content: flex-start !important;
        color: var(--kesim-primary-dark) !important;
    }

    .mobile-menu-login svg {
        width: 18px;
        height: 18px;
        margin-right: 10px;
        fill: currentColor;
    }

    .mobile-menu-settings {
        justify-content: flex-start;
        gap: 18px;
        border-bottom: 0;
        color: var(--kesim-muted);
    }

    .site-header.is-menu-open .mobile-menu-toggle {
        border-color: var(--kesim-primary);
        background: rgba(0, 168, 142, 0.1);
        color: var(--kesim-primary-dark);
    }

    .nav-actions {
        gap: 10px;
        font-size: 13px;
    }

    .brand-link img {
        height: 42px;
    }

    .store-hero {
        min-height: 540px;
    }

    .store-hero-bg {
        object-position: center top;
    }

    .store-hero-content {
        padding: 28px 0 28px;
    }

    .store-hero-copy {
        width: 100%;
    }

    .store-hero h1 {
        font-size: 30px;
        max-width: 320px;
    }

    .store-hero-subtitle {
        max-width: 330px;
        margin-bottom: 18px;
        font-size: 28px;
    }

    .store-hero-note {
        max-width: 340px;
        font-size: 15px;
    }

    .store-badges {
        gap: 8px;
        max-width: 330px;
    }

    .store-badges a {
        height: 46px;
    }

    .store-search {
        max-width: 330px;
    }

    .plans-panel {
        margin-top: -22px;
    }

    .plans-tabs {
        width: 100%;
        gap: 8px;
        padding: 0 12px;
    }

    .plans-tabs button {
        width: 50%;
        padding: 8px 12px;
        font-size: 18px;
    }

    .plans-box {
        width: calc(100% - 24px);
        border-radius: 0 0 16px 16px;
        padding: 22px 0 28px;
    }

    .plans-box h2,
    .section-title {
        margin-bottom: 24px;
        font-size: 28px;
    }

    .destination-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .destination-card {
        min-height: 48px;
        padding: 10px 14px;
    }

    .expand-link {
        min-height: 50px;
    }

    .hero-section {
        min-height: 500px;
    }

    .hero-content {
        padding: 28px 0 46px;
    }

    .hero-panel {
        border-radius: 8px;
        padding: 32px 18px;
    }

    .hero-panel h1,
    .article-header h1 {
        font-size: 30px;
    }

    .article-page {
        padding-bottom: 142px;
    }

    .sticky-cta {
        bottom: 10px;
        padding: 0 10px;
    }

    .sticky-cta-inner {
        padding: 10px;
    }

    .sticky-cta-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .sticky-cta-button {
        min-height: 50px;
        padding: 10px 14px;
        font-size: 17px;
    }

    .sticky-cta p {
        display: none;
    }

    .post-list {
        grid-template-columns: 1fr;
    }

    .post-card {
        grid-template-columns: 1fr;
    }

    .post-image,
    .post-image img {
        min-height: 190px;
    }

    .post-card-body {
        padding: 22px;
    }

    .post-card h2 {
        font-size: 22px;
    }

    .benefit-section {
        padding: 42px 0 18px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 12px;
    }

    .benefit-tall,
    .benefit-wide {
        grid-row: auto;
        grid-column: auto;
    }

    .benefit-card {
        min-height: 210px;
    }

    .benefit-card div {
        padding: 18px;
    }

    .benefit-card h3 {
        font-size: 21px;
    }

    .benefit-card img,
    .benefit-wide img {
        inset: auto 0 0;
        width: 100%;
        height: 50%;
    }

    .benefit-wide div {
        width: auto;
    }

    .how-section {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 36px 0 44px;
    }

    .how-copy h2 {
        font-size: 24px;
    }

    .faq-list summary {
        align-items: flex-start;
        padding: 14px 0;
        line-height: 1.3;
    }

    .pagination,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .map-section {
        width: min(100% - 24px, 860px);
    }

    .map-section h1 {
        font-size: 30px;
    }

    .map-list {
        grid-template-columns: 1fr;
    }

    .map-list li {
        padding: 12px 14px;
    }

    .map-list a {
        font-size: 15px;
    }

    .pagination {
        align-items: stretch;
    }

    .pager-status {
        text-align: center;
    }

    .rich-text {
        font-size: 16px;
    }
}
