/* Surfshark Homepage Clone */
:root {
    --ss-teal: #1ebfbf;
    --ss-teal-dark: #50c8c8;
    --ss-teal-glow: rgba(30, 191, 191, 0.35);
    --ss-coral: #de2e4c;
    --ss-coral-hover: #c03146;
    --ss-coral-glow: rgba(222, 46, 76, 0.28);
    --ss-dark: #16191c;
    --ss-dark-2: #1e2327;
    --ss-dark-3: #393e41;
    --ss-gray: #5b6065;
    --ss-gray-light: #dadadd;
    --ss-gray-bg: #f1f1f1;
    --ss-white: #ffffff;
    --ss-text: #16191c;
    --ss-text-muted: #393e41;
    --ss-container: 1200px;
    --ss-header-h: 64px;
    --ss-radius: 16px;
    --ss-radius-pill: 999px;
    --ss-font: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ss-shadow: 0 8px 32px rgba(22, 25, 28, 0.08);
    --ss-shadow-lg: 0 16px 48px rgba(22, 25, 28, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.ss-page {
    margin: 0;
    font-family: var(--ss-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ss-text);
    background: var(--ss-white);
    -webkit-font-smoothing: antialiased;
}

body.ss-menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.ss-container {
    max-width: var(--ss-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.ss-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--ss-radius-pill);
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    white-space: nowrap;
}

.ss-btn--primary {
    background: var(--ss-coral);
    color: var(--ss-white);
    box-shadow: 0 4px 16px var(--ss-coral-glow);
    border-radius: 12px;
}

.ss-btn--primary:hover {
    background: var(--ss-coral-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--ss-coral-glow);
}

.ss-btn--hero {
    min-width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .ss-btn--hero { min-width: auto; width: fit-content; }
}

.ss-btn--lg { padding: 16px 36px; font-size: 17px; }
.ss-btn--sm { padding: 10px 20px; font-size: 14px; }
.ss-btn--block { width: 100%; }

.ss-btn--dark {
    background: #16191c;
    color: #fff;
    box-shadow: none;
    border-radius: 12px;
}

.ss-btn--dark:hover {
    background: #1e2327;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(22, 25, 28, 0.18);
}

.ss-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: var(--ss-teal);
    transition: gap 0.2s;
}

.ss-link-arrow::after {
    content: '›';
    font-size: 20px;
    line-height: 1;
}

.ss-link-arrow:hover { gap: 8px; }
.ss-link-arrow--light { color: var(--ss-white); }

/* Header */
.ss-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--ss-header-h);
    background: #fff;
    transition: box-shadow 0.25s;
}

.ss-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(22, 25, 28, 0.08);
}

.ss-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ss-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ss-header__inner {
    max-width: var(--ss-container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.ss-logo { flex-shrink: 0; display: flex; align-items: center; }

.ss-nav { flex: 1; }

.ss-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ss-nav__item { position: relative; }

.ss-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ss-text);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
    font-family: inherit;
}

.ss-nav__link:hover { background: rgba(22, 25, 28, 0.05); }

.ss-nav__chev { width: 16px; height: 16px; opacity: 0.6; }

.ss-nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    padding: 12px;
    background: var(--ss-white);
    border-radius: var(--ss-radius);
    box-shadow: var(--ss-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 100;
}

.ss-nav__dropdown a {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 8px;
    transition: background 0.2s;
}

.ss-nav__dropdown a:hover { background: var(--ss-gray-bg); }

.ss-nav__dropdown--mega {
    min-width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 24px;
}

.ss-nav__mega-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ss-text-muted);
    margin-bottom: 12px;
}

.ss-nav__mega-item {
    display: block;
    padding: 12px;
    border-radius: 12px;
    transition: background 0.2s;
}

.ss-nav__mega-item:hover { background: var(--ss-gray-bg); }

.ss-nav__mega-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.ss-nav__mega-item span {
    display: block;
    font-size: 13px;
    color: var(--ss-text-muted);
    line-height: 1.5;
}

.ss-nav__mega-title {
    display: block;
    padding: 8px 12px 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ss-text);
    border-radius: 8px;
}

.ss-nav__mega-title:hover { background: var(--ss-gray-bg); }

.ss-nav__mega-sublink {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--ss-text-muted);
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.ss-nav__mega-sublink:hover {
    background: var(--ss-gray-bg);
    color: var(--ss-text);
}

.ss-nav__dropdown--resources {
    min-width: 640px;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px;
}

.ss-nav__item--has-sub:hover .ss-nav__dropdown,
.ss-nav__item--has-sub:focus-within .ss-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ss-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-left: auto;
}

.ss-header__lang {
    position: relative;
}

.ss-header__lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    color: #16191c;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.ss-header__lang-btn:hover,
.ss-header__lang.is-open .ss-header__lang-btn {
    background: rgba(22, 25, 28, 0.05);
}

.ss-header__lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #dadadd;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(22, 25, 28, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 1100;
}

.ss-header__lang.is-open .ss-header__lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ss-header__lang-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    color: #16191c;
    text-decoration: none;
    transition: background 0.2s;
}

.ss-header__lang-menu a:hover {
    background: #f5f5f6;
}

.ss-header__lang-menu a.is-active {
    font-weight: 600;
    background: #f5f5f6;
}

.ss-header__account {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--ss-text);
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s;
}

.ss-header__account:hover { color: var(--ss-text-muted); }

.ss-header__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--ss-text);
}

.ss-header__toggle-close { display: none; }
.ss-header__toggle.is-open .ss-header__toggle-open { display: none; }
.ss-header__toggle.is-open .ss-header__toggle-close { display: block; }

.ss-mobile-nav {
    display: none;
    position: fixed;
    top: var(--ss-header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--ss-white);
    padding: 24px;
    overflow-y: auto;
}

.ss-mobile-nav.is-open { display: block; }

.ss-mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ss-mobile-nav__list li {
    border-bottom: 1px solid var(--ss-gray-bg);
}

.ss-mobile-nav__label {
    padding: 16px 24px 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #999;
    border-bottom: none !important;
}

.ss-mobile-nav__list a {
    display: block;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 500;
}

.ss-main { padding-top: var(--ss-header-h); background: #fff; }

/* Hero — teal rounded card like surfshark.com/zh */
.ss-hero {
    padding: 16px 16px 0;
}

.ss-hero__card {
    max-width: 1536px;
    margin: 0 auto;
    background: var(--ss-teal);
    border-radius: 16px;
    overflow: hidden;
    padding: 32px 0 0;
}

.ss-hero__top {
    position: relative;
    padding: 0 24px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.ss-hero__rings {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ss-hero__ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.ss-hero__ring--1 { width: min(416px, 100vw); opacity: 1; }
.ss-hero__ring--2 { width: min(516px, calc(100vw + 100px)); opacity: 0.8; }
.ss-hero__ring--3 { width: min(616px, calc(100vw + 200px)); opacity: 0.6; }
.ss-hero__ring--4 { width: min(716px, calc(100vw + 300px)); opacity: 0.4; }
.ss-hero__ring--5 { width: min(816px, calc(100vw + 400px)); opacity: 0.2; }

.ss-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ss-hero__title {
    margin: 0 0 8px;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #16191c;
}

.ss-hero__subtitle {
    margin: 0 0 32px;
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 400;
    line-height: 1.45;
    color: #1e2327;
}

.ss-hero__actions {
    width: 100%;
    max-width: 320px;
}

.ss-hero__guarantee {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
    margin-bottom: 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #1e2327;
}

.ss-hero__guarantee svg {
    width: 20px;
    height: 20px;
    color: #1e2327;
}

.ss-hero__visual {
    position: relative;
    z-index: 1;
    padding: 0;
    max-width: 1168px;
    margin: 0 auto;
}

.ss-hero__visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (min-width: 768px) {
    .ss-hero { padding: 16px 16px 0; }
    .ss-hero__card { padding: 64px 0 0; border-radius: 16px; }
    .ss-hero__rings { top: 50%; }
    .ss-hero__ring { border-width: 2px; }
    .ss-hero__guarantee { margin-bottom: 32px; font-size: 12px; }
}

@media (min-width: 1024px) {
    .ss-hero { padding: 16px 32px 0; }
    .ss-hero__card {
        padding: 96px 0 0;
        border-radius: 64px;
    }
    .ss-hero__top { padding: 0 16px; }
    .ss-hero__ring { border-width: 3px; }
    .ss-hero__title { margin-bottom: 16px; }
    .ss-hero__visual { padding: 0 16px; }
}

@media (min-width: 1600px) {
    .ss-hero { padding: 16px 0 0; }
}

/* Trust */
.ss-trust {
    padding: 24px 0;
    background: #fff;
}

.ss-trust__wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ss-trust__intro { text-align: center; }

.ss-trust__headline {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.75;
    color: #16191c;
}

.ss-trust__headline strong { font-weight: 600; }

.ss-trust__date {
    margin: 0;
    font-size: 13px;
    color: #5b6065;
}

.ss-trust__date--mobile { display: block; text-align: center; }
.ss-trust__date--desktop { display: none; }

.ss-trust__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.ss-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.ss-trust__rating { text-align: center; }

.ss-trust__score {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 14px;
    color: #393e41;
}

.ss-stars {
    display: inline-flex;
    width: 120px;
    height: 24px;
    background-repeat: repeat-x;
    background-size: 24px 24px;
}

.ss-stars--trustpilot {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%2300b67a' d='M12 2l2.9 6.9 7.1.6-5.4 4.7 1.7 7-6.3-3.8-6.3 3.8 1.7-7L2 9.5l7.1-.6z'/%3E%3C/svg%3E");
    width: 108px;
}

.ss-stars--default {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffb800' d='M12 2l2.9 6.9 7.1.6-5.4 4.7 1.7 7-6.3-3.8-6.3 3.8 1.7-7L2 9.5l7.1-.6z'/%3E%3C/svg%3E");
}

@media (min-width: 1024px) {
    .ss-trust { padding: 48px 0 64px; }
    .ss-trust__wrap {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 32px;
    }
    .ss-trust__intro {
        flex: 0 0 468px;
        text-align: left;
    }
    .ss-trust__headline { font-size: 18px; }
    .ss-trust__date--mobile { display: none; }
    .ss-trust__date--desktop { display: block; text-align: left; }
    .ss-trust__grid {
        flex: 1;
        flex-direction: row;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 32px;
    }
}

/* Sections */
.ss-section {
    padding: 24px 0;
}

.ss-section--vpn { padding-top: 0; }

.ss-section__head {
    max-width: 820px;
    margin: 0 auto 32px;
}

.ss-section__head--center {
    text-align: center;
}

.ss-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #16191c;
    background: #f5f5f6;
    border-radius: 32px;
}

.ss-label--ghost {
    background: #f5f5f6;
    margin-bottom: 0;
}

.ss-label--light {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.ss-label-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.ss-section__title {
    margin: 0 0 12px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #16191c;
}

.ss-section__desc {
    margin: 0;
    font-size: 18px;
    color: #5b6065;
    line-height: 1.67;
}

@media (min-width: 768px) {
    .ss-section { padding: 48px 0; }
}

@media (min-width: 1024px) {
    .ss-section { padding: 64px 0; }
    .ss-section__head { margin-bottom: 48px; }
}

/* VPN Bento */
.ss-vpn-bento {
    border-radius: 16px;
    overflow: hidden;
}

.ss-vpn-bento__top {
    display: flex;
    flex-direction: column-reverse;
}

.ss-vpn-bento__copy {
    padding: 32px 24px;
    background: #16191c;
    color: #fff;
}

.ss-vpn-bento__copy h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.42;
}

.ss-vpn-bento__copy p {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.75;
    color: #dadadd;
}

.ss-vpn-bento__photo {
    height: 328px;
    background: #1e2327;
    overflow: hidden;
}

.ss-vpn-bento__photo img {
    width: 100%;
    height: calc(100% + 16px);
    margin-top: -16px;
    object-fit: cover;
    object-position: center top;
}

.ss-vpn-bento__bottom {
    display: flex;
    flex-wrap: wrap;
}

.ss-vpn-bento__experience,
.ss-vpn-bento__speed,
.ss-vpn-bento__stats {
    flex: 0 0 100%;
}

.ss-vpn-bento__experience {
    position: relative;
    padding: 32px 24px 0;
    background: #1ebfbf;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-height: 280px;
    overflow: hidden;
}

.ss-vpn-bento__experience p {
    margin: 0 0 24px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.55;
    color: #16191c;
    position: relative;
    z-index: 1;
}

.ss-vpn-bento__speed {
    padding: 32px 24px;
    background: #f1f1f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 32px;
}

.ss-vpn-bento__speed p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #16191c;
}

.ss-vpn-bento__illus {
    width: min(100%, 360px);
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.ss-vpn-bento__illus--speed {
    width: min(100%, 220px);
}

.ss-vpn-bento__stats {
    display: flex;
    flex-wrap: wrap;
}

.ss-vpn-bento__stat {
    flex: 1 1 100%;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ss-vpn-bento__stat--light {
    background: #f9f9f9;
    color: #16191c;
}

.ss-vpn-bento__stat--dark {
    background: #1e2327;
    color: #fff;
}

.ss-vpn-bento__num {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
}

.ss-vpn-bento__stat-label {
    font-size: 14px;
    line-height: 1.71;
    margin-top: 4px;
}

.ss-vpn-bento__stat--light .ss-vpn-bento__stat-label { color: #393e41; }
.ss-vpn-bento__stat--dark .ss-vpn-bento__stat-label { color: #dadadd; }

.ss-vpn-bento__map {
    width: 100%;
    max-width: 220px;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .ss-vpn-bento__top { flex-direction: row; }
    .ss-vpn-bento__copy,
    .ss-vpn-bento__photo { flex: 1 1 50%; }
    .ss-vpn-bento__photo {
        height: auto;
        min-height: 360px;
    }
    .ss-vpn-bento__photo img {
        height: calc(100% + 32px);
        margin-top: -32px;
    }
    .ss-vpn-bento__experience,
    .ss-vpn-bento__speed { flex: 1 1 50%; }
    .ss-vpn-bento__stat { flex: 0 0 50%; }
}

@media (min-width: 1024px) {
    .ss-vpn-bento { border-radius: 48px; }
    .ss-vpn-bento__copy { padding: 64px 48px; }
    .ss-vpn-bento__copy h3 { font-size: 40px; line-height: 1.3; margin-bottom: 16px; }
    .ss-vpn-bento__experience { flex: 2 2 50%; padding: 64px 48px; min-height: 360px; }
    .ss-vpn-bento__experience p { font-size: 24px; margin-bottom: 64px; }
    .ss-vpn-bento__speed { flex: 1 1 25%; padding: 64px 24px; gap: 64px; }
    .ss-vpn-bento__stats { flex: 1 1 25%; flex-direction: column; }
    .ss-vpn-bento__stat { flex: 0 0 100%; padding: 64px 24px; }
    .ss-vpn-bento__stat--light .ss-vpn-bento__stat-label { margin-bottom: 32px; }
    .ss-vpn-bento__num { font-size: 48px; }
    .ss-vpn-bento__photo img {
        height: calc(100% + 64px);
        margin-top: -64px;
    }
}

/* Tabs — underline style */
.ss-tabs-section {
    padding: 32px 0 64px;
    background: #fff;
}

.ss-tabs {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0 auto 24px;
    padding: 0;
    justify-content: flex-start;
    overflow-x: auto;
    width: fit-content;
    max-width: 100%;
}

.ss-tabs li { list-style: none; margin: 0; padding: 0; }

.ss-tabs__btn {
    padding: 12px 32px;
    font-size: 18px;
    font-weight: 600;
    font-family: inherit;
    color: #5b6065;
    background: transparent;
    border: none;
    border-bottom: 2px solid #dadadd;
    border-radius: 0;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}

.ss-tabs__btn:hover {
    color: #393e41;
    border-bottom-color: #393e41;
}

.ss-tabs__btn.is-active {
    color: #16191c;
    background: transparent;
    border-bottom-color: #16191c;
}

.ss-tabs__panel {
    max-width: 968px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.75;
    color: #393e41;
}

.ss-tabs__panel[hidden] { display: none; }

@media (min-width: 1024px) {
    .ss-tabs-section { padding: 96px 0; }
    .ss-tabs { justify-content: center; margin-bottom: 32px; }
    .ss-tabs__panel { margin-top: 32px; }
}

/* Antivirus */
.ss-section--antivirus { background: #fff; }

.ss-antivirus-bento {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.ss-antivirus-bento__visual {
    background: #f1f1f1;
    min-height: 328px;
    position: relative;
}

.ss-antivirus-bento__visual img {
    width: 100%;
    height: 100%;
    min-height: 328px;
    object-fit: cover;
}

.ss-antivirus-bento__panel {
    padding: 32px 24px;
    background: #16191c;
    color: #fff;
}

.ss-antivirus-bento__panel h3 {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.33;
}

.ss-antivirus-bento__panel p {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.75;
    color: #dadadd;
}

.ss-antivirus-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.ss-antivirus-features__item h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
    color: #16191c;
}

.ss-antivirus-features__item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #393e41;
}

@media (min-width: 768px) {
    .ss-antivirus-bento { flex-direction: row; }
    .ss-antivirus-bento__visual,
    .ss-antivirus-bento__panel { flex: 1 1 50%; }
    .ss-antivirus-bento__visual { min-height: 420px; }
    .ss-antivirus-features { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (min-width: 1024px) {
    .ss-antivirus-bento { border-radius: 48px; }
    .ss-antivirus-bento__panel { padding: 64px 48px; }
    .ss-antivirus-bento__panel h3 { font-size: 32px; }
}

/* Identity grid */
.ss-section--solutions {
    background: #fff;
}

.ss-identity-grid {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px;
}

.ss-identity-grid__incogni-text,
.ss-identity-grid__incogni-img,
.ss-identity-grid__alert,
.ss-identity-grid__alt-id,
.ss-identity-grid__coverage {
    padding: 32px 24px;
}

.ss-identity-grid__incogni-text {
    background: #f1f1f1;
    order: 2;
}

.ss-identity-grid__incogni-img {
    background: #1ebfbf;
    padding: 0;
    min-height: 328px;
    order: 1;
}

.ss-identity-grid__incogni-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 328px;
}

.ss-identity-grid__incogni-text h3,
.ss-identity-grid__alert-copy h3,
.ss-identity-grid__alt-id h3,
.ss-identity-grid__coverage h3 {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.33;
    color: #16191c;
}

.ss-identity-grid__incogni-text p,
.ss-identity-grid__alt-id p,
.ss-identity-grid__coverage p {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.75;
    color: #393e41;
}

.ss-identity-grid__alert {
    background: #dadadd;
    order: 3;
}

.ss-identity-grid__alert-visual {
    margin-bottom: 24px;
}

.ss-identity-grid__alert-visual img {
    max-width: 320px;
    width: 100%;
}

.ss-identity-grid__alert-copy h3 {
    margin-bottom: 24px;
    font-size: 18px;
}

.ss-identity-grid__alt-id {
    background: #1e2327;
    color: #fff;
    order: 4;
}

.ss-identity-grid__alt-id h3,
.ss-identity-grid__coverage h3 {
    color: #fff;
}

.ss-identity-grid__alt-id p,
.ss-identity-grid__coverage p {
    color: #dadadd;
}

.ss-identity-grid__coverage {
    background: #5b6065;
    color: #fff;
    order: 5;
    border-radius: 0 0 16px 16px;
}

@media (min-width: 768px) {
    .ss-identity-grid {
        display: grid;
        grid-template:
            "incogniText incogniImg" auto
            "alert alert" auto
            "altId coverage" auto / 1fr 1fr;
    }
    .ss-identity-grid__incogni-text {
        order: unset;
        grid-area: incogniText;
        border-radius: 16px 0 0 0;
    }
    .ss-identity-grid__incogni-img {
        order: unset;
        grid-area: incogniImg;
        border-radius: 0 16px 0 0;
        min-height: auto;
    }
    .ss-identity-grid__alert {
        order: unset;
        grid-area: alert;
        display: flex;
        align-items: center;
        gap: 32px;
        padding: 48px;
    }
    .ss-identity-grid__alert-visual { margin-bottom: 0; flex-shrink: 0; }
    .ss-identity-grid__alt-id {
        order: unset;
        grid-area: altId;
        border-radius: 0 0 0 16px;
    }
    .ss-identity-grid__coverage {
        order: unset;
        grid-area: coverage;
        border-radius: 0 0 16px 0;
    }
}

@media (min-width: 1024px) {
    .ss-identity-grid { border-radius: 48px; }
    .ss-identity-grid__incogni-text { padding: 64px 48px; border-radius: 48px 0 0 0; }
    .ss-identity-grid__incogni-img { border-radius: 0 48px 0 0; }
    .ss-identity-grid__alert { padding: 64px; gap: 64px; }
    .ss-identity-grid__alert-copy h3 { font-size: 24px; }
    .ss-identity-grid__alt-id,
    .ss-identity-grid__coverage { padding: 64px 48px; }
    .ss-identity-grid__alt-id { border-radius: 0 0 0 48px; }
    .ss-identity-grid__coverage { border-radius: 0 0 48px 0; }
    .ss-identity-grid__incogni-text h3,
    .ss-identity-grid__alt-id h3,
    .ss-identity-grid__coverage h3 { font-size: 32px; }
}

/* Testimonials */
.ss-section--testimonials {
    padding: 24px 0 64px;
    text-align: center;
    background: #fff;
}

.ss-testimonials__avatars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.ss-testimonials__avatar {
    width: 72px;
    height: 80px;
    padding: 0;
    border: 3px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    background: none;
    cursor: pointer;
    transition: border-color 0.25s, transform 0.25s;
}

.ss-testimonials__avatar.is-active {
    width: 88px;
    height: 96px;
    border-color: #1ebfbf;
    border-radius: 20px;
}

.ss-testimonials__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ss-testimonials__quote {
    max-width: 760px;
    margin: 0 auto 32px;
    padding: 0;
    border: none;
}

.ss-testimonials__quote p {
    margin: 0 0 20px;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
    line-height: 1.35;
    color: #16191c;
}

.ss-testimonials__quote footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 15px;
    color: #5b6065;
}

.ss-testimonials__quote footer strong {
    color: #16191c;
    font-size: 16px;
    font-weight: 600;
}

.ss-testimonials__quote[hidden] { display: none; }

.ss-testimonials__cta { margin-bottom: 24px; }

.ss-testimonials__disclaimer {
    max-width: 640px;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.67;
    color: #5b6065;
}

@media (min-width: 768px) {
    .ss-section--testimonials { padding: 48px 0; }
}

@media (min-width: 1024px) {
    .ss-section--testimonials { padding: 64px 0; }
}

/* Footer */
.ss-footer {
    background: var(--ss-dark);
    color: var(--ss-white);
}

.ss-footer__top {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 48px;
    padding: 64px 24px 48px;
}

.ss-footer__cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.ss-footer__col h4 {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ss-gray-light);
}

.ss-footer__col h4:not(:first-child) { margin-top: 24px; }

.ss-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ss-footer__col li { margin-bottom: 10px; }

.ss-footer__col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
}

.ss-footer__col a:hover { color: var(--ss-white); }

.ss-footer__platforms {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.ss-footer__platforms-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.ss-footer__platforms a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.ss-footer__platforms a:hover { color: var(--ss-teal); }

.ss-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
}

.ss-footer__bottom-inner {
    text-align: center;
}

.ss-footer__bottom p {
    margin: 0 0 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.ss-footer__links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.ss-footer__links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.ss-footer__links a:hover { color: var(--ss-teal); }

.ss-footer__links span { color: rgba(255, 255, 255, 0.3); }

/* Responsive */
@media (max-width: 1024px) {
    .ss-nav { display: none; }
    .ss-header__account { display: none; }
    .ss-header__lang { display: none; }
    .ss-header__toggle { display: flex; }

    .ss-footer__top { grid-template-columns: 1fr; }
    .ss-footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ss-footer__cols { grid-template-columns: 1fr; }
    .ss-tabs { justify-content: flex-start; }
    .ss-tabs__btn { flex-shrink: 0; }
}

@media (max-width: 480px) {
    .ss-hero { padding-top: 40px; }
}
