:root {
    --font-sans: "MiSans", "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    --font-display: "Segoe UI Variable Display", "MiSans", "HarmonyOS Sans SC", "PingFang SC", sans-serif;
    --text: #0f172a;
    --muted: #5f6b7d;
    --muted-strong: #344256;
    --surface: rgba(255, 255, 255, 0.74);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --surface-dark: #0f172a;
    --line: rgba(15, 23, 42, 0.08);
    --line-strong: rgba(0, 226, 158, 0.22);
    --accent: #00E29E;
    --accent-strong: #00c48a;
    --accent-secondary: #00bf84;
    --accent-soft: rgba(0, 226, 158, 0.12);
    --accent-soft-strong: rgba(0, 226, 158, 0.2);
    --shadow-sm: 0 18px 50px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 28px 70px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 34px 90px rgba(15, 23, 42, 0.16);
    --radius-lg: 28px;
    --radius-xl: 36px;
    --container: min(1200px, calc(100vw - 48px));
    --transition: 240ms ease;
}

html {
    font-size: 1px;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(0, 226, 158, 0.12), transparent 34%),
        radial-gradient(circle at 85% 12%, rgba(0, 226, 158, 0.18), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #f1f6ff 32%, #f7fafc 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: auto, 32px 32px, 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
    pointer-events: none;
    z-index: -1;
}

body,
body * {
    font-family: var(--font-sans);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.download-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.page-shell {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: rgba(248, 251, 255, 0.66);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(248, 251, 255, 0.92);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.site-header__inner {
    width: var(--container);
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 3;
}

.site-brand {
    display: flex;
    align-items: center;
}

.site-brand__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
    text-decoration: none;
}

.site-brand__logo {
    width: auto;
    height: 36px;
    display: block;
}

.site-brand__name {
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: var(--text);
    white-space: nowrap;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-header__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-header__links .download-trigger {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid transparent;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    transition: transform var(--transition), color var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-header__links .download-trigger:hover {
    transform: translateY(-2px);
    color: var(--text);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(15, 157, 146, 0.12);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.site-header__button,
.hero-download-button,
.feature-panel__button,
.cta-section__button,
.risk-section__button {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent) 100%);
    box-shadow: 0 18px 40px rgba(15, 157, 146, 0.22);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.site-header__button::after,
.hero-download-button::after,
.feature-panel__button::after,
.cta-section__button::after,
.risk-section__button::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -40%;
    width: 32%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    transform: skewX(-20deg);
    animation: sheen 4.4s ease-in-out infinite;
}

.site-header__button:hover,
.hero-download-button:hover,
.feature-panel__button:hover,
.cta-section__button:hover,
.risk-section__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 46px rgba(15, 157, 146, 0.28);
    filter: saturate(1.08);
}

.site-header__button {
    min-width: 168px;
    height: 48px;
    padding: 0 20px;
    gap: 8px;
    border-radius: 999px;
    margin-left: 4px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.site-header__actions img,
.hero-download-button img,
.feature-panel__button img,
.cta-section__button img,
.risk-section__button img {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.banner {
    position: relative;
    width: 100%;
    min-height: 720px;
    padding: 34px 0 80px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.96), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(15, 157, 146, 0.14), transparent 28%),
        linear-gradient(135deg, #fdfefe 0%, #eef6ff 48%, #edf8f5 100%);
    z-index: 0;
}

.banner::after {
    content: "";
    position: absolute;
    width: 680px;
    height: 680px;
    top: -180px;
    right: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0) 68%);
    pointer-events: none;
    z-index: 0;
}

.hero-layout {
    position: relative;
    top: 0;
    z-index: 2;
    width: var(--container);
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.92fr);
    align-items: center;
    gap: 48px;
    padding: 36px 0 28px;
}

.hero-content {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 620px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: rgba(11, 126, 130, 0.9);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.hero-title {
    position: relative;
    display: block;
    max-width: 640px;
    margin-top: 14px;
    font-family: var(--font-display);
    color: var(--text);
}

.hero-title-main {
    display: block;
    max-width: 620px;
    white-space: normal;
    font-size: clamp(44px, 4.8vw, 72px);
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 780;
}

.hero-title .hero-title-accent {
    display: inline-block;
    margin: 0;
    font-size: inherit;
    font-weight: 800;
    color: transparent;
    background: linear-gradient(135deg, var(--text) 12%, var(--accent-secondary) 48%, var(--accent) 88%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-description {
    max-width: 580px;
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.68;
    color: var(--muted);
}

.hero-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    width: 100%;
    max-width: 560px;
}

.hero-feature-item {
    align-items: center;
    width: 100% !important;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transition: transform var(--transition), color var(--transition);
}

.hero-feature-item:hover {
    transform: translateX(4px);
}

.hero-feature-list img {
    width: 16px;
    height: 16px;
    margin: 2px 12px 0 0;
    flex: 0 0 16px;
}

.hero-feature-text {
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
    color: var(--muted-strong);
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 16px;
    margin-top: 22px;
}

.hero-download-button {
    width: fit-content;
    min-width: 210px;
    height: 54px;
    margin-top: 0;
    padding: 0 24px;
    gap: 10px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
}

.bannerMeta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
}

.bannerSuit,
.bannerNewTime {
    width: fit-content;
    margin-top: 0;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.82);
    color: var(--muted);
    font-size: 13px;
    line-height: 1;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: fit-content;
    max-width: 100%;
    margin-top: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    width: fit-content;
    min-width: fit-content;
    min-height: 64px;
    padding: 0 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    font-size: 14px;
    font-weight: 700;
    color: var(--muted-strong);
    white-space: nowrap;
}

.stat-label {
    flex: 0 0 auto;
    line-height: 1.35;
    color: var(--text);
}

.stat-value {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
}

.metricUnit {
    flex: 0 0 auto;
    line-height: 1;
    color: var(--text);
}

.stat-digit {
    display: inline-block;
    position: relative;
    top: 0;
    width: 15px;
    height: 24px;
    overflow: hidden;
    text-align: center;
}

.stat-digit span {
    display: block;
    position: absolute;
    width: 100%;
    color: var(--accent);
    font-size: 20px;
    font-weight: 800;
    animation: roll-up 0.45s ease-out;
}

.hero-visual {
    position: relative;
    width: 100%;
    min-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    z-index: 1;
    isolation: isolate;
}

.hero-preview {
    position: relative;
    width: 100%;
    max-width: 640px;
    min-height: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.hero-preview-glow {
    display: none;
}

.hero-preview-header {
    display: none;
}

.hero-preview-dots {
    display: inline-flex;
    gap: 8px;
}

.hero-preview-dots span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.48);
}

.hero-preview-dots span:first-child {
    background: #34d399;
}

.hero-preview-dots span:nth-child(2) {
    background: #60a5fa;
}

.hero-preview-dots span:last-child {
    background: #cbd5e1;
}

.hero-preview-label {
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.hero-preview-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    height: auto;
    margin-top: 0;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    filter: none;
    animation: none;
}

.hero-badge {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 126px;
    height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    box-shadow: none;
    backdrop-filter: blur(12px);
    color: #0f172a;
    text-transform: uppercase;
}

.feature-overview {
    width: var(--container);
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-overview__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 74px;
}

.feature-overview__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    min-height: 208px;
    padding: 32px 18px 24px;
    border-radius: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    overflow: hidden;
}

.feature-overview__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(15, 157, 146, 0.14), rgba(59, 130, 246, 0.04));
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-overview__item:hover {
    transform: translateY(-8px);
    border-color: rgba(15, 157, 146, 0.14);
    box-shadow: var(--shadow-md);
}

.feature-overview__item:hover::before {
    opacity: 1;
}

.feature-overview__grid img {
    position: relative;
    z-index: 1;
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.feature-overview__item-text {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    color: var(--text);
}

.section-title {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    font-family: var(--font-display);
    font-size: clamp(34px, 3vw, 50px);
    font-weight: 760;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--text);
    text-align: center;
}

.section-title__underline {
    position: absolute;
    width: 240px;
    height: auto;
    top: auto;
    bottom: -14px;
    opacity: 0.65;
    pointer-events: none;
}

.section-description {
    width: min(860px, 100%);
    height: auto;
    margin-top: 22px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--muted);
}

.showcase-card {
    width: 100%;
    height: auto;
    margin-top: 40px;
    padding: 16px;
    border-radius: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 249, 255, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
}

.feature-sections {
    width: 100%;
    margin-top: 110px;
    padding: 96px 0;
    background:
        radial-gradient(circle at 16% 22%, rgba(59, 130, 246, 0.1), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(15, 157, 146, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(240, 246, 251, 0.88) 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.feature-sections .section-title {
    width: var(--container);
}

.feature-panel__accent {
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 26px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent-secondary) 0%, var(--accent) 100%);
    box-shadow: 0 10px 24px rgba(15, 157, 146, 0.26);
}

.feature-panel {
    position: relative;
    width: var(--container);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 52px;
    margin-top: 36px;
    padding: 42px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.feature-panel:first-of-type {
    margin-top: 64px;
}

.feature-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 160px;
    height: 160px;
    border-radius: 0 0 100% 0;
    background: linear-gradient(135deg, rgba(15, 157, 146, 0.12), rgba(59, 130, 246, 0.06));
    pointer-events: none;
}

.feature-panel:nth-of-type(odd) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(240, 247, 255, 0.9));
}

.feature-panel:nth-of-type(even) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(238, 249, 246, 0.9));
}

.feature-panel__content {
    position: relative;
    z-index: 1;
    flex: 1 1 0;
    padding-left: 0;
    margin-top: 0 !important;
}

.feature-panel>img,
.feature-panel__image {
    position: relative;
    z-index: 1;
    flex: 0 0 min(46%, 540px);
    width: min(46%, 540px) !important;
    max-width: 540px;
    height: auto !important;
    max-height: 360px;
    margin-top: 0 !important;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(15, 23, 42, 0.14));
    transition: transform 320ms ease;
}

.feature-panel:hover>img,
.feature-panel:hover .feature-panel__image {
    transform: translateY(-6px) scale(1.02);
}

.feature-panel__title {
    position: relative;
    height: auto;
    padding-left: 22px;
    text-align: left !important;
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 760;
    line-height: 1.2;
    color: var(--text);
}

.feature-panel__description {
    width: auto !important;
    max-width: 520px;
    margin-top: 18px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.78;
    color: var(--muted);
}

.feature-panel__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    min-width: 178px;
    height: 52px;
    margin-top: 26px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    line-height: 52px;
    float: none !important;
}

.risk-section {
    position: relative;
    width: 100%;
    padding: 96px 0 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.risk-section::before {
    content: "";
    position: absolute;
    inset: 24px auto auto 8%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 87, 137, 0.12) 0%, rgba(250, 87, 137, 0) 72%);
    filter: blur(10px);
    pointer-events: none;
}

.risk-section::after {
    content: "";
    position: absolute;
    inset: auto 7% 42px auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(161, 107, 255, 0.12) 0%, rgba(161, 107, 255, 0) 72%);
    filter: blur(12px);
    pointer-events: none;
}

.risk-grid {
    position: relative;
    z-index: 1;
    width: var(--container);
    margin-top: 66px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.risk-card {
    position: relative;
    min-height: 330px;
    padding: 32px 28px 14px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
    transition: transform var(--transition), box-shadow var(--transition);
}

.risk-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.18);
}

.risk-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.risk-card--virus {
    background: linear-gradient(135deg, #fa838d 0%, #f75f8d 100%);
}

.risk-card--crash {
    background: linear-gradient(137deg, #2da8e8 0%, #1a78d8 100%);
}

.risk-card--isolation {
    background: linear-gradient(142deg, #ffdd78 0%, #ff7b29 56%, #ff5300 100%);
}

.risk-card--leak {
    background: linear-gradient(137deg, #c7a8ff 0%, #a56cf4 100%);
}

.risk-card__title,
.risk-card__text,
.risk-card__image {
    position: relative;
    z-index: 1;
}

.risk-card__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 760;
    line-height: 1.25;
    color: #ffffff;
    text-align: center;
}

.risk-card__text {
    margin-top: 26px;
    max-width: 320px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.96);
}

.risk-card__image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 116px;
    height: 116px;
    object-fit: contain;
    filter: drop-shadow(0 18px 26px rgba(20, 24, 35, 0.18));
}

.risk-section__button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 320px;
    height: 56px;
    margin-top: 54px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 700;
    line-height: 56px;
}

.testimonials {
    position: relative;
    width: 100%;
    padding: 94px 0 116px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(246, 250, 255, 0.92) 16%, rgba(243, 248, 253, 0.98) 100%);
}

.testimonials::before {
    content: "";
    position: absolute;
    inset: 54px auto auto 8%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 72%);
    filter: blur(10px);
    z-index: 0;
}

.testimonials::after {
    content: "";
    position: absolute;
    inset: auto 10% 24px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 157, 146, 0.12) 0%, rgba(15, 157, 146, 0) 72%);
    filter: blur(14px);
    z-index: 0;
}

.testimonials__title {
    position: relative;
    z-index: 2;
    width: var(--container);
}

.testimonials__slider-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 34px;
}

.testimonials__backdrop {
    position: absolute;
    inset: 34px 0 0;
    width: min(1240px, calc(100vw - 48px));
    height: calc(100% - 48px);
    margin: 0 auto;
    object-fit: cover;
    opacity: 0.16;
    filter: blur(2px) saturate(0.9);
    border-radius: 40px;
    z-index: 1;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.68) 62%, transparent 100%);
}

.testimonials__slider {
    width: var(--container);
    height: 392px;
    margin: 0 auto;
    overflow: visible;
}

.swiper-wrapper {
    margin-top: 84px;
    align-items: center;
}

.swiper-slide {
    height: auto !important;
    opacity: 0.55;
    transform: scale(0.9);
    transition: transform 360ms ease, opacity 360ms ease, filter 360ms ease;
}

.swiper-slide-active,
.swiper-slide-duplicate-active {
    opacity: 1;
    transform: translateY(-10px) scale(1.02);
    z-index: 3;
}

.testimonial-card {
    width: auto;
    min-height: 244px;
    height: auto;
    padding: 26px 28px 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-md);
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    backdrop-filter: blur(18px);
}

.testimonial-card>img {
    position: static;
    display: block;
    width: 72px;
    height: 72px;
    margin: -60px auto 12px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.96);
    object-fit: cover;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.14);
}

.testimonial-card__rating {
    margin-top: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-card__rating img {
    width: 20px;
    height: 20px;
}

.testimonial-card__text {
    height: auto;
    margin: 18px 0 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--muted-strong);
    text-align: center;
}

.testimonial-card__name {
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text);
}

.cta-section {
    position: relative;
    width: var(--container);
    min-height: 318px;
    margin: 44px auto 24px;
    border-radius: 44px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    background:
        radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.18), transparent 22%),
        radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.12), transparent 26%),
        linear-gradient(135deg, #00e29e 0%, #00cf91 38%, #00b884 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 80px rgba(0, 139, 98, 0.24);
}

.cta-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04) 36%, rgba(255, 255, 255, 0.02) 68%, rgba(255, 255, 255, 0.1));
    z-index: 2;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 24% 32%, rgba(255, 255, 255, 0.18), transparent 24%),
        radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.12), transparent 20%);
    z-index: 1;
}

.cta-section__image {
    display: none;
}

.cta-section__content {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 318px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 56px 32px;
    margin-top: 0;
    text-align: center;
}

.cta-section__title {
    height: auto;
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 760;
    line-height: 1.06;
    color: #ffffff;
    letter-spacing: -0.04em;
}

.cta-section__subtitle {
    height: auto;
    margin-top: 14px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.cta-section__button {
    min-width: 190px;
    height: 50px;
    margin-top: 28px;
    padding: 0 20px;
    gap: 10px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    color: #00b884;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.2);
}

.cta-section__button img {
    filter: brightness(0) saturate(100%) invert(58%) sepia(95%) saturate(954%) hue-rotate(118deg) brightness(95%) contrast(102%);
}

.cta-section__button:hover {
    color: #00a776;
    background: #ffffff;
    box-shadow: 0 24px 46px rgba(255, 255, 255, 0.28);
    filter: none;
}

.cta-section__button:hover img {
    filter: brightness(0) saturate(100%) invert(49%) sepia(100%) saturate(917%) hue-rotate(123deg) brightness(92%) contrast(103%);
}

.site-footer {
    width: var(--container);
    height: auto;
    padding: 18px 0 36px;
    background: transparent;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    text-align: center;
}

.site-footer div,
.site-footer span,
.site-footer a {
    color: var(--muted);
    opacity: 1;
}

.site-footer__text {
    margin-top: 0;
}

.site-footer__text div,
.site-footer__text span,
.site-footer__text a {
    font-size: 13px;
    line-height: 1.9;
}

.site-footer__text a:hover {
    color: var(--accent);
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    top: auto;
    width: auto;
    height: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    z-index: 120;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    cursor: pointer;
}

.back-to-top__button {
    position: relative;
    width: 56px;
    min-width: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 250, 255, 0.92) 100%);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(16px);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    cursor: pointer;
    overflow: hidden;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.back-to-top__button::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
        radial-gradient(circle at 50% 0%, rgba(0, 226, 158, 0.14), transparent 62%);
    opacity: 0.72;
    pointer-events: none;
}

.back-to-top__button:hover {
    transform: translateY(-3px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 255, 249, 0.98) 100%);
    border-color: var(--line-strong);
    box-shadow: 0 24px 48px rgba(0, 196, 138, 0.18);
}

.back-to-top__icon {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
    margin: 0;
    background-image: url("../images/global_icon_uptop@2x.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    opacity: 1;
    transition: transform var(--transition), opacity var(--transition);
}

.back-to-top__button:hover .back-to-top__icon {
    transform: translateY(-1px);
}

.back-to-top__text {
    display: none;
}

.back-to-top__button:hover .back-to-top__text {
    display: none;
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 82px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 120;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(18px);
    overflow: visible;
}

.support-card,
.floating-download {
    position: relative;
    width: 56px;
    min-height: 56px;
    padding: 8px 6px;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background var(--transition);
}

.support-card:hover,
.floating-download:hover {
    transform: none;
    background: rgba(4, 225, 158, 0.06);
}

.support-card {
    cursor: default;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px 14px 0 0;
}

.floating-download {
    cursor: pointer;
    border-radius: 0 0 14px 14px;
}

.support-card__icon,
.floating-download__icon {
    width: 18px;
    height: 18px;
    margin: 0;
    display: block;
}

.support-card__icon {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    background-image: url("../images/icon_customer_service_nor@2x.png");
}

.support-card:hover .support-card__icon {
    background-image: url("../images/icon_Customer_service_hover@2x.png");
}

.floating-download__icon {
    filter: brightness(0) saturate(100%) invert(9%) sepia(0%) saturate(0%) hue-rotate(184deg) brightness(98%) contrast(91%);
}

.floating-download:hover .floating-download__icon {
    filter: brightness(0) saturate(100%) invert(74%) sepia(75%) saturate(2256%) hue-rotate(111deg) brightness(93%) contrast(97%);
}

.support-card__text,
.floating-download__text {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.1;
    color: #1a1a1a;
    text-align: center;
}

.support-card:hover .support-card__text,
.floating-download:hover .floating-download__text {
    color: #04e19e;
}

.support-card__qr {
    position: absolute;
    top: 50%;
    right: calc(100% + 12px);
    width: 184px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
    transform: translateY(-50%) translateX(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.support-card__qr::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -7px;
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    transform: translateY(-50%) rotate(45deg);
}

.support-card:hover .support-card__qr {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.support-card__qr img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}

.support-card__qr span {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--muted-strong);
    text-align: center;
}

@keyframes roll-up {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(-14px, 12px, 0) rotate(-5deg);
    }
}

@keyframes sheen {
    0%,
    20% {
        transform: translateX(0) skewX(-20deg);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    55%,
    100% {
        transform: translateX(520%) skewX(-20deg);
        opacity: 0;
    }
}

@media (max-width: 1180px) {
    .feature-overview__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-layout {
        min-height: 0;
        padding: 30px 30px;
        gap: 24px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-badge {
        right: 24px;
    }

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

@media (max-width: 900px) {
    :root {
        --container: calc(100vw - 32px);
    }

    .site-header__inner {
        min-height: 72px;
    }

    .site-header__links {
        display: none;
    }

    .site-header__button {
        min-width: 156px;
        margin-left: 0;
    }

    .floating-actions {
        display: none;
    }

    .risk-section {
        padding: 82px 0 92px;
    }

    .risk-grid {
        margin-top: 56px;
        gap: 16px;
    }

    .risk-card {
        min-height: 292px;
        padding: 24px 22px 16px;
        border-radius: 24px;
    }

    .risk-card__title {
        font-size: 22px;
    }

    .risk-card__text {
        margin-top: 18px;
        font-size: 16px;
    }

    .risk-card__image {
        width: 104px;
        height: 104px;
    }

    .banner {
        min-height: auto;
        padding: 18px 0 64px;
    }

    .hero-layout {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 0 16px;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-actions {
        align-items: stretch;
    }

    .hero-visual {
        padding-top: 0;
    }

    .hero-badge {
        min-width: 120px;
    }

    .hero-preview {
        min-height: 0;
        padding: 0;
    }

    .hero-preview-image {
        width: 100%;
        margin-top: 0;
    }

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

    .feature-panel {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding: 34px 28px;
    }

    .feature-panel>img,
    .feature-panel__image {
        width: 100% !important;
        max-width: none;
        max-height: none;
        flex-basis: auto;
    }

    .testimonials__slider {
        width: var(--container);
        height: 368px;
        overflow: hidden;
    }

    .cta-section__content {
        padding: 42px 34px;
    }
}

@media (max-width: 640px) {
    :root {
        --container: calc(100vw - 24px);
        --radius-xl: 28px;
    }

    body::before {
        background-size: auto, 22px 22px, 22px 22px;
    }

    .site-header__inner {
        min-height: 68px;
    }

    .site-brand__logo {
        height: 30px;
    }

    .site-brand__name {
        font-size: 18px;
    }

    .site-header__button {
        min-width: 150px;
        height: 44px;
        padding: 0 16px;
        font-size: 14px;
    }

    .hero-eyebrow {
        letter-spacing: 0.14em;
    }

    .hero-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .hero-title-main {
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1;
    }

    .hero-description {
        margin-top: 14px;
        font-size: 15px;
    }

    .hero-feature-list {
        gap: 10px;
        margin-top: 16px;
    }

    .hero-feature-item {
        padding: 0;
        border-radius: 0;
    }

    .hero-feature-text,
    .section-description,
    .feature-panel__description {
        font-size: 15px;
    }

    .hero-download-button,
    .feature-panel__button,
    .cta-section__button,
    .risk-section__button {
        width: 100%;
        min-width: 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .stat-card {
        width: 100%;
        justify-content: space-between;
        min-height: 58px;
        padding: 0 16px;
    }

    .stat-label {
        font-size: 15px;
    }

    .metricUnit {
        font-size: 15px;
    }

    .bannerMeta,
    .bannerSuit,
    .bannerNewTime {
        max-width: 100%;
    }

    .hero-badge {
        min-width: 120px;
        height: 34px;
        font-size: 12px;
    }

    .hero-preview {
        min-height: 0;
        padding: 0;
    }

    .hero-preview-header {
        margin-bottom: 12px;
    }

    .feature-overview {
        margin-top: 16px;
    }

    .feature-overview__grid {
        grid-template-columns: 1fr;
        margin-bottom: 56px;
    }

    .section-title {
        font-size: 32px;
    }

    .showcase-card {
        padding: 10px;
        border-radius: 24px;
    }

    .feature-sections {
        margin-top: 84px;
        padding: 74px 0;
    }

    .risk-section {
        padding: 70px 0 82px;
    }

    .risk-grid {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .risk-card {
        min-height: 264px;
    }

    .risk-card__title {
        font-size: 21px;
    }

    .risk-card__text {
        max-width: 68%;
        font-size: 15px;
    }

    .risk-card__image {
        width: 92px;
        height: 92px;
    }

    .feature-panel {
        padding: 28px 22px;
    }

    .feature-panel__title {
        padding-left: 18px;
        font-size: 28px;
    }

    .feature-panel__accent {
        top: 7px;
        height: 22px;
    }

    .testimonials__slider {
        height: 392px;
    }

    .testimonial-card {
        min-height: 258px;
        padding: 22px 20px 20px;
        border-radius: 24px;
    }

    .testimonial-card__text {
        font-size: 14px;
    }

    .cta-section {
        min-height: 240px;
        border-radius: 30px;
        margin-top: 32px;
    }

    .cta-section__content {
        min-height: 240px;
        padding: 36px 24px;
    }

    .cta-section__subtitle {
        font-size: 16px;
    }

    .back-to-top {
        right: 12px;
        bottom: 12px;
    }

    .back-to-top__button {
        width: 48px;
        min-width: 48px;
        min-height: 48px;
        padding: 0;
        border-radius: 14px;
    }

    .back-to-top__text {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
