:root {
    --page-width: 1360rem;
    --page-gutter: 24rem;
    --primary: #125ed9;
    --primary-light: #15aaed;
    --text: #24364d;
    --text-soft: #5b687a;
    --line: rgba(18, 94, 217, 0.1);
    --bg: #f0f4f9;
    --bg-soft: #f7fbff;
    --shadow-sm: 0 6rem 18rem rgba(18, 94, 217, 0.08);
    --shadow-md: 0 16rem 40rem rgba(18, 94, 217, 0.14);
    --shadow-lg: 0 24rem 60rem rgba(18, 94, 217, 0.16);
}

body {
    background: linear-gradient(180deg, #f0f4f9 0%, #f7fbff 100%);
    overflow-x: hidden;
}

.site-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100dvh;
}

.page-main {
    width: 100%;
}

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

.site-header {
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20rem);
    height: 72rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2rem 16rem rgba(0, 0, 0, 0.05), 0 1rem 4rem rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    border-bottom: 1rem solid rgba(18, 94, 217, 0.08);
}

.site-header.is-scrolled {
    box-shadow: 0 8rem 28rem rgba(0, 0, 0, 0.1), 0 2rem 8rem rgba(0, 0, 0, 0.05);
    border-bottom-color: rgba(18, 94, 217, 0.16);
}

.site-header-inner,
.hero-layout,
.core-feature-grid,
.benefit-card-grid,
.product-highlights-container,
.use-cases-layout,
.testimonial-slider-wrap,
.cta-section,
.site-footer-text {
    width: min(var(--page-width), calc(100% - (var(--page-gutter) * 2)));
    margin: 0 auto;
}

.site-header-inner {
    height: 72rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header-brand {
    display: flex;
    align-items: center;
    gap: 14rem;
    color: var(--text);
}

.site-header-brand > img {
    width: 36rem;
    height: 36rem;
    filter: drop-shadow(0 2rem 6rem rgba(18, 94, 217, 0.12));
}

.site-header-brand span {
    font-size: 20rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 28rem;
}

.site-header-stats {
    display: flex;
    align-items: center;
    gap: 6rem;
    font-size: 15rem;
    font-weight: 700;
    color: var(--text-soft);
}

#allWorker {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 1rem 8rem;
    border-radius: 999rem;
    background: linear-gradient(180deg, rgba(18, 94, 217, 0.08) 0%, rgba(21, 170, 237, 0.06) 100%);
    box-shadow: inset 0 0 0 1rem rgba(18, 94, 217, 0.08);
}

.download-counter-digit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 12rem;
    height: 30rem;
    overflow: hidden;
    font-size: 28rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 4rem 12rem rgba(18, 94, 217, 0.22);
}

.download-counter-digit span {
    display: block;
    width: 100%;
    animation: roll-up 0.45s ease-out;
}

.download-counter-separator {
    min-width: 4rem;
}

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

    to {
        transform: translateY(0);
    }
}

.site-header-button,
.hero-download-button,
.section-download-button,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
    position: relative;
    overflow: hidden;
    height: 48rem;
    padding: 0 28rem;
    border: 0;
    border-radius: 12rem;
    color: #fff;
    background: linear-gradient(137deg, #15aaed 0%, #125ed9 100%);
    box-shadow: 0 8rem 22rem rgba(18, 94, 217, 0.24);
    font-size: 16rem;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.site-header-button > img,
.hero-download-button > img,
.section-download-button > img,
.cta-button > img,
.site-header-button > span,
.hero-download-button > span,
.section-download-button > span,
.cta-button > span {
    position: relative;
    z-index: 2;
}

.site-header-button > span,
.hero-download-button > span,
.section-download-button > span,
.cta-button > span {
    color: #fff !important;
}

.site-header-button > img,
.hero-download-button > img,
.section-download-button > img,
.cta-button > img {
    width: 18rem;
    height: 18rem;
    flex-shrink: 0;
}

.hero-download-button {
    min-width: 244rem;
    height: 58rem;
    padding: 0 34rem;
    border-radius: 16rem;
    font-size: 18rem;
}

.hero-download-button > img {
    width: 20rem;
    height: 20rem;
}

.hero-download-button > span {
    font-weight: 800;
}

.site-header-button:hover,
.hero-download-button:hover,
.section-download-button:hover,
.cta-button:hover {
    transform: translateY(-2rem);
    box-shadow: 0 14rem 30rem rgba(18, 94, 217, 0.28);
    filter: saturate(1.08);
}

.hero {
    position: relative;
    padding-top: 132rem;
    padding-bottom: 58rem;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(21, 170, 237, 0.12), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(18, 94, 217, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(240, 244, 249, 0) 100%);
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(560rem, 620rem);
    align-items: center;
    gap: 64rem;
}

.hero-copy {
    position: relative;
}

.hero-title {
    position: relative;
    margin-bottom: 4rem;
}

.hero-title-line {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title-wrap {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    max-width: fit-content;
    padding-right: 170rem;
}

.hero-title-text {
    font-size: 50rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1rem;
    text-shadow: 0 8rem 24rem rgba(18, 94, 217, 0.12);
    position: relative;
    padding-bottom: 12rem;
}

.hero-title-text::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4rem;
    border-radius: 999rem;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    box-shadow: 0 0 10rem rgba(18, 94, 217, 0.35);
}

.hero-badge {
    position: absolute;
    top: -10rem;
    right: 0;
    display: flex;
    align-items: center;
    gap: 8rem;
    padding: 0 20rem;
    height: 50rem;
    overflow: hidden;
    isolation: isolate;
    border-radius: 999rem;
    border: 2rem solid rgba(255, 255, 255, 0.82);
    background: linear-gradient(135deg, #ff7aa2 0%, #ff9f59 46%, #ffd86f 100%);
    box-shadow: 0 12rem 30rem rgba(255, 124, 127, 0.32), inset 0 1rem 0 rgba(255, 255, 255, 0.34);
    color: #fff;
    animation: banner-badge-float 3.6s ease-in-out infinite;
}

.hero-badge::before,
.hero-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-badge::before {
    background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.14) 38%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.12) 62%, transparent 84%);
    transform: translateX(-145%) skewX(-22deg);
    animation: banner-badge-sheen 2.9s ease-in-out infinite;
}

.hero-badge::after {
    inset: auto;
    top: 8rem;
    right: 14rem;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.2) 55%, transparent 72%);
    filter: blur(0.2rem);
    box-shadow: -56rem 10rem 0 -4rem rgba(255, 255, 255, 0.24);
    animation: banner-badge-spark 2.4s ease-in-out infinite;
}

.hero-badge-year {
    font-size: 22rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.hero-badge-text {
    font-size: 18rem;
    font-weight: 600;
    letter-spacing: 1rem;
    position: relative;
    z-index: 1;
}

@keyframes banner-badge-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3rem);
    }
}

@keyframes banner-badge-sheen {
    0% {
        transform: translateX(-145%) skewX(-22deg);
        opacity: 0;
    }

    16% {
        opacity: 1;
    }

    52% {
        transform: translateX(145%) skewX(-22deg);
        opacity: 1;
    }

    100% {
        transform: translateX(145%) skewX(-22deg);
        opacity: 0;
    }
}

@keyframes banner-badge-spark {
    0%,
    100% {
        opacity: 0.72;
        transform: scale(0.92);
    }

    50% {
        opacity: 1;
        transform: scale(1.18);
    }
}

.hero-title-glow {
    position: absolute;
    top: 50%;
    left: 160rem;
    width: 340rem;
    height: 180rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 94, 217, 0.14) 0%, transparent 72%);
    transform: translateY(-50%);
    filter: blur(42rem);
    z-index: 0;
}

.hero-feature-list {
    display: grid;
    gap: 18rem;
    margin-top: 34rem;
}

.hero-feature-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18rem;
    padding: 20rem 22rem;
    border-radius: 20rem;
    border: 1rem solid rgba(18, 94, 217, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.94) 100%);
    box-shadow: 0 14rem 38rem rgba(18, 94, 217, 0.08), 0 3rem 12rem rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-feature-card:hover {
    transform: translateX(8rem) translateY(-3rem);
    box-shadow: 0 16rem 44rem rgba(18, 94, 217, 0.14), 0 5rem 16rem rgba(0, 0, 0, 0.06);
    border-color: rgba(18, 94, 217, 0.24);
}

.hero-feature-icon {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.hero-feature-icon-shell {
    width: 56rem;
    height: 56rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14rem;
    background: linear-gradient(135deg, rgba(18, 94, 217, 0.08) 0%, rgba(21, 170, 237, 0.1) 100%);
    border: 1rem solid rgba(18, 94, 217, 0.08);
}

.hero-feature-icon-shell img {
    width: 26rem;
    height: 26rem;
}

.hero-feature-body {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-feature-title {
    font-size: 21rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 28rem;
}

.hero-feature-description {
    margin-top: 6rem;
    font-size: 16rem;
    line-height: 26rem;
    color: #666;
}

.hero-feature-glow {
    position: absolute;
    right: -40rem;
    top: -40rem;
    width: 160rem;
    height: 160rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 94, 217, 0.18) 0%, transparent 72%);
    opacity: 0.25;
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18rem;
    flex-wrap: wrap;
    margin-top: 26rem;
}

.hero-meta-list {
    display: flex;
    align-items: center;
    gap: 18rem;
    flex-wrap: wrap;
    padding: 18rem 22rem;
    border-radius: 18rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1rem solid rgba(18, 94, 217, 0.1);
    box-shadow: var(--shadow-sm);
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.hero-meta-label {
    font-size: 12rem;
    line-height: 1;
    color: #75839a;
}

.hero-meta-value {
    font-size: 16rem;
    font-weight: 700;
    color: var(--text);
}

.hero-meta-divider {
    width: 1rem;
    height: 36rem;
    background: rgba(18, 94, 217, 0.12);
}

.hero-preview {
    position: relative;
    min-height: 520rem;
    display: flex;
    align-items: center;
}

.hero-preview-frame {
    position: relative;
    width: 100%;
    padding: 24rem;
    border-radius: 32rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.86) 0%, rgba(241, 247, 255, 0.94) 100%);
    border: 1rem solid rgba(18, 94, 217, 0.1);
    box-shadow: var(--shadow-lg), inset 0 1rem 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20rem);
}

.hero-preview-image {
    display: block;
    width: 100%;
    border-radius: 22rem;
    box-shadow: 0 18rem 40rem rgba(18, 94, 217, 0.14);
}

.hero-preview-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 16rem 18rem;
    border-radius: 16rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1rem solid rgba(18, 94, 217, 0.08);
    box-shadow: var(--shadow-md);
}

.hero-preview-badge strong {
    font-size: 16rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-preview-badge span {
    font-size: 13rem;
    line-height: 20rem;
    color: var(--text-soft);
}

.hero-preview-badge-top {
    top: 24rem;
    left: -26rem;
}

.hero-preview-badge-bottom {
    right: -18rem;
    bottom: 34rem;
}

.hero-bg-left {
    position: absolute;
    left: -46rem;
    top: 180rem;
    width: 220rem;
    opacity: 0.42;
    pointer-events: none;
}

.hero-bg-right {
    position: absolute;
    right: -120rem;
    top: 120rem;
    width: 420rem;
    opacity: 0.15;
    pointer-events: none;
}

.core-features,
.benefits,
.product-highlights,
.use-cases,
.testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.core-features {
    padding-top: 24rem;
}

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 34rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.section-heading-light {
    color: #fff;
}

.section-heading-accent {
    width: 72rem;
    height: 8rem;
    margin-top: 12rem;
    border-radius: 999rem;
    background: linear-gradient(137deg, #15aaed 0%, #125ed9 100%);
}

.core-features-subtitle,
.benefits-subtitle,
.use-cases-subtitle {
    width: min(760rem, calc(100% - 48rem));
    margin-top: 20rem;
    text-align: center;
    font-size: 16rem;
    line-height: 28rem;
    color: var(--text-soft);
}

.benefits-subtitle {
    color: var(--text-soft);
}

.core-feature-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24rem;
    margin-top: 52rem;
    perspective: 1000rem;
}

.core-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    min-height: 172rem;
    border-radius: 16rem;
    border: 1rem solid rgba(18, 94, 217, 0.1);
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    box-shadow: 0 8rem 24rem rgba(18, 94, 217, 0.08), 0 2rem 8rem rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-sizing: border-box;
}

.core-feature-card:hover {
    transform: translateY(-8rem) scale(1.05) rotateY(4deg);
    box-shadow: 0 16rem 48rem rgba(18, 94, 217, 0.18), 0 8rem 24rem rgba(18, 94, 217, 0.12);
    border-color: rgba(18, 94, 217, 0.28);
}

.core-feature-card-bg,
.core-feature-card-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.core-feature-card-bg {
    background: linear-gradient(135deg, rgba(18, 94, 217, 0.04) 0%, rgba(21, 170, 237, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.core-feature-card-glow {
    inset: auto;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 94, 217, 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.core-feature-card:hover .core-feature-card-bg {
    opacity: 1;
}

.core-feature-card:hover .core-feature-card-glow {
    width: 220rem;
    height: 220rem;
}

.core-feature-icon,
.core-feature-label {
    position: relative;
    z-index: 2;
}

.core-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 26rem;
}

.core-feature-icon img {
    width: 64rem;
    height: 64rem;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.core-feature-card:hover .core-feature-icon img {
    transform: translateY(-6rem) scale(1.12);
    filter: drop-shadow(0 4rem 12rem rgba(18, 94, 217, 0.32));
}

.core-feature-label {
    margin-top: 18rem;
    padding: 0 10rem;
    text-align: center;
    font-size: 19rem;
    font-weight: 600;
    color: var(--text);
    transition: color 0.35s ease;
}

.core-feature-card:hover .core-feature-label {
    color: var(--primary);
}

.section-download-button {
    margin-top: 58rem;
    min-width: 220rem;
    height: 56rem;
    border-radius: 14rem;
    font-size: 18rem;
}

.button-ripple {
    position: absolute;
    width: 220rem;
    height: 220rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    animation: ripplePulse 1.4s ease-out infinite;
}

@keyframes ripplePulse {
    0% {
        transform: scale(0.08);
        opacity: 0.45;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.benefits {
    position: relative;
    margin-top: 120rem;
    padding: 88rem 0 100rem;
    background:
        radial-gradient(circle at 12% 18%, rgba(21, 170, 237, 0.1), transparent 24%),
        radial-gradient(circle at 88% 22%, rgba(18, 94, 217, 0.12), transparent 26%),
        linear-gradient(180deg, #f5f9ff 0%, #eef5ff 52%, #f8fbff 100%);
    overflow: hidden;
}

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

.benefits::before {
    width: 280rem;
    height: 280rem;
    left: -80rem;
    top: 40rem;
    background: radial-gradient(circle, rgba(21, 170, 237, 0.1) 0%, transparent 72%);
    filter: blur(20rem);
}

.benefits::after {
    width: 360rem;
    height: 360rem;
    right: -120rem;
    bottom: 20rem;
    background: radial-gradient(circle, rgba(18, 94, 217, 0.12) 0%, transparent 72%);
    filter: blur(30rem);
}

.benefit-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28rem;
    margin-top: 48rem;
}

.benefit-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20rem;
    border-radius: 24rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 249, 255, 0.92) 100%);
    border: 1rem solid rgba(18, 94, 217, 0.1);
    box-shadow: 0 18rem 38rem rgba(18, 94, 217, 0.1), 0 4rem 14rem rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    inset: auto -40rem -50rem auto;
    width: 180rem;
    height: 180rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 94, 217, 0.12) 0%, transparent 72%);
    pointer-events: none;
}

.benefit-card:hover {
    transform: translateY(-6rem);
    box-shadow: 0 24rem 46rem rgba(18, 94, 217, 0.14), 0 8rem 20rem rgba(0, 0, 0, 0.05);
    border-color: rgba(18, 94, 217, 0.22);
}

.benefit-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    min-height: 278rem;
    padding: 8rem 4rem 4rem;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.benefit-card-meta {
    display: flex;
    align-items: center;
    gap: 12rem;
    margin-bottom: 14rem;
}

.benefit-card-icon-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48rem;
    height: 48rem;
    border-radius: 14rem;
    background: linear-gradient(135deg, rgba(21, 170, 237, 0.16) 0%, rgba(18, 94, 217, 0.08) 100%);
    border: 1rem solid rgba(18, 94, 217, 0.12);
    box-shadow: inset 0 1rem 0 rgba(255, 255, 255, 0.72);
    flex-shrink: 0;
}

.benefit-card-icon-shell img {
    width: 24rem;
    height: 24rem;
}

.benefit-card-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34rem;
    padding: 0 14rem;
    border-radius: 999rem;
    background: rgba(18, 94, 217, 0.08);
    color: var(--primary);
    font-size: 13rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
}

.benefit-card-title {
    font-size: 22rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
}

.benefit-card-description {
    margin-top: 10rem;
    font-size: 15rem;
    line-height: 26rem;
    color: var(--text-soft);
}

.benefit-card-points {
    display: grid;
    gap: 10rem;
    margin-top: 16rem;
}

.benefit-card-points span {
    display: flex;
    align-items: center;
    gap: 10rem;
    min-height: 40rem;
    padding: 0 14rem;
    border-radius: 12rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1rem solid rgba(18, 94, 217, 0.08);
    color: rgba(36, 54, 77, 0.88);
    font-size: 14rem;
    line-height: 22rem;
    box-shadow: 0 10rem 20rem rgba(18, 94, 217, 0.05);
}

.benefit-card-points span::before {
    content: "";
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #15aaed 0%, #125ed9 100%);
    box-shadow: 0 0 0 5rem rgba(21, 170, 237, 0.1);
}

.product-highlights {
    padding: 108rem 0 88rem;
}

.product-highlights-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-highlights-panel {
    width: 100%;
    margin-top: 50rem;
    display: grid;
    grid-template-columns: minmax(440rem, 480rem) minmax(0, 1fr);
    gap: 42rem;
    align-items: center;
}

.product-highlights-list {
    display: grid;
    gap: 18rem;
}

.highlight-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16rem;
    padding: 20rem;
    border: 1rem solid rgba(18, 94, 217, 0.08);
    border-radius: 20rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    text-align: left;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.highlight-item:hover,
.highlight-item.is-current {
    transform: translateX(8rem);
    box-shadow: var(--shadow-md);
    border-color: rgba(18, 94, 217, 0.18);
}

.highlight-step-number {
    width: 54rem;
    height: 54rem;
    flex-shrink: 0;
}

.highlight-item-body {
    flex: 1;
}

.highlight-item-title {
    font-size: 22rem;
    font-weight: 700;
    line-height: 30rem;
    color: var(--text);
}

.highlight-item-description {
    margin-top: 8rem;
    font-size: 15rem;
    line-height: 26rem;
    color: var(--text-soft);
}

.product-highlights-preview {
    position: relative;
    min-height: 460rem;
    padding: 24rem;
    border-radius: 30rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.88) 0%, rgba(241, 247, 255, 0.94) 100%);
    border: 1rem solid rgba(18, 94, 217, 0.08);
    box-shadow: var(--shadow-lg);
}

.product-highlights-preview-image {
    display: none;
    width: 100%;
    border-radius: 22rem;
    box-shadow: 0 18rem 36rem rgba(18, 94, 217, 0.12);
}

.product-highlights-preview-image.is-current {
    display: block;
}

.use-cases {
    margin-top: 120rem;
    padding-bottom: 100rem;
}

.use-cases-heading {
    position: relative;
    display: inline-flex;
    justify-content: center;
    font-size: 34rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.use-cases-heading-ornament {
    position: absolute;
    bottom: -18rem;
    width: 210rem;
    height: auto;
}

.use-cases-subtitle {
    margin-top: 24rem;
    font-size: 18rem;
    color: #666;
    line-height: 18rem;
}

.use-cases-layout {
    width: min(var(--page-width), calc(100% - (var(--page-gutter) * 2)));
    margin-top: 72rem;
    display: grid;
    grid-template-columns: 285rem minmax(0, 1fr) 285rem;
    gap: 20rem;
}

.use-cases-side-left,
.use-cases-side-right,
.use-case-card {
    position: relative;
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.use-cases-side-left:hover,
.use-cases-side-right:hover,
.use-case-card:hover {
    transform: translateY(-8rem);
    filter: saturate(1.03);
}

.use-cases-side-left,
.use-cases-side-right {
    width: 285rem;
    height: 480rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    filter: drop-shadow(0 14rem 28rem rgba(18, 94, 217, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 22rem 20rem 30rem;
}

.use-cases-side-left {
    background-image: url('../img/bg3.svg');
}

.use-cases-side-right {
    background-image: url('../img/bg5@2x.png');
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20rem;
}

.use-case-card {
    width: 100%;
    height: 230rem;
    background-image: url('../img/bg4@2x.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    filter: drop-shadow(0 10rem 24rem rgba(18, 94, 217, 0.1));
}

.use-cases-side-title-left,
.use-cases-side-title-right {
    width: 196rem;
    font-size: 19rem;
    font-weight: 700;
    line-height: 28rem;
    color: #fff;
    margin: 0;
    word-break: break-word;
    white-space: normal;
}

.use-cases-side-title-left {
    margin-top: 6rem;
}

.use-cases-side-title-right {
    margin-top: 6rem;
    margin-left: auto;
    text-align: center;
}

.use-cases-side-notes {
    display: flex;
    flex-direction: column;
    gap: 16rem;
    width: 100%;
}

.use-cases-side-note-left,
.use-cases-side-note-right {
    position: relative;
    margin: 0;
    max-width: 170rem;
    height: 20rem;
}

.use-cases-side-note-left span,
.use-cases-side-note-right span {
    position: relative;
    z-index: 2;
    font-size: 20rem;
    font-weight: 500;
    line-height: 20rem;
    color: #333;
}

.use-cases-side-note-right {
    margin-left: auto;
    text-align: left;
}

.use-cases-note-highlight {
    position: absolute;
    top: 14rem;
    width: 144rem;
    height: 12rem;
    z-index: 1;
    border-radius: 8rem;
    background: linear-gradient(90deg, #d7f761 0%, rgba(137, 243, 210, 0) 100%);
}

.use-case-card-left {
    position: absolute;
    top: 40rem;
    left: 20rem;
    font-size: 20rem;
    line-height: 30rem;
    font-weight: 600;
    color: #125ed9;
}

.use-case-card-right {
    position: absolute;
    top: 40rem;
    left: 121rem;
    width: 142rem;
    height: 96rem;
    display: flex;
    justify-content: center;
    font-size: 20rem;
    line-height: 30rem;
    font-weight: 600;
    color: #125ed9;
    padding-top: 28rem;
    text-align: center;
}

.use-case-card-right-wide {
    padding-top: 12rem;
}

.use-case-card-title {
    position: absolute;
    top: 180rem;
    left: 71rem;
}

.use-case-card-title span {
    position: relative;
    z-index: 2;
    font-size: 24rem;
    font-weight: 700;
    color: #333;
    line-height: 24rem;
}

.use-case-card-left-compact {
    left: 49rem;
    top: 71rem;
}

.testimonials {
    padding-bottom: 100rem;
}

.testimonial-slider-wrap {
    margin-top: 48rem;
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
    padding: 26rem 0 30rem;
}

.testimonial-card {
    position: relative;
    min-height: 228rem;
    padding: 34rem 28rem 26rem;
    border-radius: 22rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1rem solid rgba(18, 94, 217, 0.08);
    box-shadow: var(--shadow-sm);
    box-sizing: border-box;
}

.testimonial-card > img {
    width: 64rem;
    height: 64rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8rem 18rem rgba(18, 94, 217, 0.16);
}

.testimonial-rating {
    display: flex;
    gap: 8rem;
    margin-top: 18rem;
}

.testimonial-rating img {
    width: 20rem;
    height: 20rem;
}

.testimonial-card-text {
    margin-top: 18rem;
    font-size: 15rem;
    line-height: 28rem;
    color: #4b596c;
}

.testimonial-card-name {
    margin-top: 16rem;
    font-size: 14rem;
    font-weight: 700;
    color: var(--primary);
}

.swiper-slide {
    opacity: 0.62;
    transform: scale(0.96);
    transition: opacity 0.3s ease, transform 0.3s ease;
    height: auto !important;
}

.swiper-slide-active,
.swiper-slide-duplicate-active {
    opacity: 1;
    transform: scale(1);
}

.cta-section {
    position: relative;
    width: 100%;
    margin-bottom: 28rem;
    min-height: 280rem;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    background: linear-gradient(137deg, #15aaed 0%, #125ed9 58%, #0d4eb8 100%);
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.16), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.12), transparent 24%),
        linear-gradient(90deg, rgba(8, 39, 92, 0.18) 0%, rgba(18, 94, 217, 0) 100%);
}

.cta-inner {
    position: relative;
    z-index: 2;
    width: min(var(--page-width), calc(100% - (var(--page-gutter) * 2)));
    margin: 0 auto;
    min-height: 280rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16rem;
    padding: 0 54rem;
    text-align: center;
}

.cta-title {
    font-size: 36rem;
    font-weight: 800;
    color: #fff;
}

.cta-text {
    max-width: 620rem;
    font-size: 17rem;
    line-height: 30rem;
    color: rgba(255, 255, 255, 0.84);
}

.cta-button {
    align-self: center;
    min-width: 170rem;
}

.site-footer {
    width: 100%;
    padding: 0 0 34rem;
}

.site-footer-text {
    text-align: center;
}

.site-footer-text,
.site-footer-text span {
    font-size: 12rem;
    line-height: 24rem;
    color: rgba(36, 54, 77, 0.72);
}

.back-to-top {
    position: fixed;
    right: 20rem;
    bottom: 24rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(12rem);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.back-to-top-button {
    width: 58rem;
    height: 58rem;
    border: 0;
    border-radius: 18rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1rem solid rgba(18, 94, 217, 0.08);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.back-to-top-button:hover {
    transform: translateY(-3rem);
    box-shadow: var(--shadow-md);
}

.back-to-top-icon {
    width: 18rem;
    height: 18rem;
    background: url('../img/global_icon_uptop@2x.png') no-repeat center / contain;
}

.back-to-top-label {
    font-size: 11rem;
    font-weight: 700;
    color: var(--text-soft);
}

#loading-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(240, 246, 255, 0.42);
    backdrop-filter: blur(4rem);
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1999;
}

#loading-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#loading-spinner {
    width: 54rem;
    height: 54rem;
    border-radius: 50%;
    border: 6rem solid rgba(18, 94, 217, 0.14);
    border-top-color: var(--primary);
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1280px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 28rem;
    }

    .hero-preview {
        max-width: 760rem;
        width: 100%;
        margin: 0 auto;
    }

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

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

@media (max-width: 1024px) {
    .site-header {
        height: auto;
        padding: 10rem 0;
    }

    .site-header-inner {
        height: auto;
        flex-direction: column;
        gap: 12rem;
        padding: 4rem 0;
    }

    .site-header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .hero {
        padding-top: 156rem;
    }

    .product-highlights-panel,
    .benefit-card-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-preview-badge-top {
        left: 10rem;
    }

    .hero-preview-badge-bottom {
        right: 10rem;
    }

    .use-cases-layout {
        grid-template-columns: 1fr;
    }

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

    .use-cases-side-left,
    .use-cases-side-right {
        width: 100%;
        background-position: center;
    }
}

@media (max-width: 768px) {
    .site-header-actions {
        flex-direction: column;
        gap: 10rem;
    }

    .site-header-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .site-header-button,
    .hero-download-button,
    .section-download-button,
    .cta-button {
        width: 100%;
    }

    .hero {
        padding-top: 184rem;
    }

    .hero-title-text {
        font-size: 40rem;
    }

    .hero-title-wrap {
        padding-right: 126rem;
    }

    .hero-badge {
        top: -6rem;
        height: 42rem;
        padding: 0 14rem;
    }

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

    .hero-meta-list {
        justify-content: space-between;
    }

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

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .use-cases-side-title-right {
        margin-left: 0;
        text-align: left;
    }

    .use-cases-side-title-left,
    .use-cases-side-title-right {
        width: 190rem;
    }

    .cta-inner {
        padding: 36rem 26rem;
    }
}

@media (max-width: 560px) {
    .site-header-brand span {
        font-size: 18rem;
    }

    .hero {
        padding-top: 202rem;
    }

    .hero-title-line {
        width: 100%;
    }

    .hero-badge {
        top: -2rem;
        right: 0;
    }

    .hero-badge-year {
        font-size: 18rem;
    }

    .hero-badge-text {
        font-size: 14rem;
    }

    .hero-title-wrap {
        width: 100%;
        padding-right: 112rem;
    }

    .section-heading {
        font-size: 28rem;
    }

    .core-feature-grid {
        grid-template-columns: 1fr;
    }

    .use-cases-heading {
        font-size: 28rem;
    }

    .highlight-item:hover,
    .highlight-item.is-current {
        transform: none;
    }

    .product-highlights-preview {
        min-height: 0;
        padding: 16rem;
    }

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

    .use-cases-subtitle {
        font-size: 16rem;
        line-height: 24rem;
        text-align: center;
        padding: 0 16rem;
    }

    .use-case-card-title {
        left: 28rem;
    }

    .back-to-top {
        right: 14rem;
        bottom: 14rem;
    }
}

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