/*
 * V2 Blueiot Anchor Product Page Styles
 * Design base: 1920px (1rem = 16px)
 * Layout: section (full-width bg) > .v2-container > inner elements
 */

html {
    scroll-behavior: smooth;
}

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

/* 固定顶栏遮挡：仅 contact 需要补偿，models 贴顶即可 */
#tg-contact {
    scroll-margin-top: 0rem;
    padding-top: 0 !important;
    background: #F5F5F7;
}

/* ==========================================
 * 1. Hero Banner
 * ========================================== */
.v2-anchor-hero {
    position: relative;
    width: 100%;
    height: 33.75rem;
    background: url(/uploads/image/v2/anchor/banner.avif) center center no-repeat;
    background-size: cover;
    overflow: hidden;
}
.v2-anchor-hero-content {
    padding-top: 5.75rem;
}
.v2-anchor-hero-title-l1 {
    font-size: 2.75rem;
    color: #323232;
    font-family: "Gotham-Bold", sans-serif;
    line-height: 3.3125rem;
}
.v2-anchor-hero-title-l2 {
    font-size: 2.75rem;
    color: #009cff;
    font-family: "Gotham-Bold", sans-serif;
    line-height: 3.0625rem;
    margin-top: -0.25rem;
}
.v2-anchor-hero-body {
    max-width: 45.5rem;
    font-size: 1.375rem;
    color: #323232;
    line-height: 1.625rem;
    margin-top: 0.688rem;
}
.v2-anchor-hero-btns {
    display: flex;
    gap: 1.875rem;
    margin-top: 2.375rem;
}
.v2-anchor-hero-btn-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #008cff;
    border-radius: 6.25rem;
    height: 2.5rem;
    padding: 0 1.25rem;
    font-size: 1.125rem;
    font-family: "Gotham-Medium", sans-serif;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.6s ease;
}
.v2-anchor-hero-btn-blue:hover {
    background-color: #72BFFF;
    color: #fff;
}
.v2-anchor-hero-btn-blue:active {
    background-color: #0067BB;
    color: #fff;
}
.v2-anchor-hero-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7.5rem;
    height: 2.5rem;
    padding: 0 1.25rem;
    font-size: 1.125rem;
    font-family: "Gotham-Medium", sans-serif;
    color: #323232;
    border: 0.0625rem solid #323232;
    background-color: transparent;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.6s ease, border-color 0.6s ease, color 0.6s ease;
}
.v2-anchor-hero-btn-outline:hover {
    background-color: #008cff;
    border-color: #008cff;
    color: #fff;
}
.v2-anchor-hero-btn-outline:active {
    background-color: #0067BB;
    border-color: #0067BB;
    color: #fff;
}

/* ==========================================
 * 2. Stats Bar — 4 white cards
 * ========================================== */
.v2-anchor-stats-section {
    padding: 5rem 0 4.5rem 0;
    background-color: #F5F5F7;
}
.v2-anchor-stats-wrap {
    position: relative;
    --v2-anchor-stats-num-h: 2.625rem;
    --v2-anchor-stats-gap: 1.25rem;
    --v2-anchor-stats-label-h: 1.25rem;
    --v2-anchor-stats-block-h: calc(var(--v2-anchor-stats-num-h) + var(--v2-anchor-stats-gap) + var(--v2-anchor-stats-label-h));
}
.v2-anchor-stats-grid {
    display: flex;
    gap: 2rem;
}
.v2-anchor-stats-card {
    flex: 1;
    background-color: #fff;
    border-radius: 0.875rem;
    box-shadow: 0 0 0.625rem 0 rgba(34, 50, 72, 0.1);
    height: 11.6875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 1.5rem 1rem;
}
.v2-anchor-stats-card::before {
    content: '';
    display: block;
    width: 100%;
    height: var(--v2-anchor-stats-num-h);
    margin-bottom: var(--v2-anchor-stats-gap);
    flex-shrink: 0;
}
.v2-anchor-stats-card-label {
    font-size: 1.25rem;
    font-family: "Gotham-Medium", sans-serif;
    color: #323232;
    line-height: var(--v2-anchor-stats-label-h);
    text-align: center;
}
.v2-anchor-stats-numbers {
    position: absolute;
    top: calc(50% - var(--v2-anchor-stats-block-h) / 2);
    left: 0;
    right: 0;
    height: var(--v2-anchor-stats-num-h);
    display: flex;
    gap: 2rem;
    line-height: 1;
    pointer-events: none;
    background: linear-gradient(90deg, #008CFF 0%, #B260FF 40%, #FE6C6A 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.v2-anchor-stats-number {
    flex: 1;
    text-align: center;
    font-size: 2.625rem;
    font-family: "Gotham-Bold", sans-serif;
    line-height: var(--v2-anchor-stats-num-h);
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* ==========================================
 * 3. Product Compare
 * ========================================== */
.v2-anchor-models-section {
    padding: 0 0 5rem 0;
    background-color: #F5F5F7;
}
.v2-anchor-models-title {
    font-size: 2.75rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #323232;
    line-height: 3.125rem;
}
.v2-anchor-models-subtitle {
    font-size: 1.375rem;
    color: #323232;
    line-height: 1.625rem;
    margin-top: 0.9375rem;
    max-width: 57.0625rem;
}
.v2-anchor-models-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.375rem;
}
.v2-anchor-model-card {
    flex: 1;
    background-color: #fff;
    border-radius: 1.125rem;
    box-shadow: 0 0 1rem 0 rgba(34, 50, 72, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.v2-anchor-model-img-wrap {
    position: relative;
    height: 23.75rem;
    overflow: hidden;
    border-radius: 1.125rem 1.125rem 0 0;
}
.v2-anchor-model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.v2-anchor-model-tag {
    position: absolute;
    top: 1.875rem;
    left: 2.5rem;
    height: 2.25rem;
    padding: 0 1.25rem;
    border-radius: 3.75rem;
    font-size: 1.25rem;
    font-family: "Gotham-Medium", sans-serif;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.v2-anchor-model-tag-indoor {
    background-color: #dee9fd;
    color: #006af4;
}
.v2-anchor-model-tag-outdoor {
    background-color: #e6fbf6;
    color: #00b150;
}
.v2-anchor-model-body {
    padding: 1.875rem 3.75rem 3.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.v2-anchor-model-name {
    font-size: 1.75rem;
    font-family: "Gotham-Medium", sans-serif;
    color: #323232;
    line-height: 1.75rem;
    margin-bottom: .625rem;
}
.v2-anchor-model-name strong {
    font-family: "Gotham-Bold", sans-serif;
    font-weight: normal;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}
.v2-anchor-model-name span {
    font-family: "Gotham-Book", sans-serif;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}
.v2-anchor-model-desc {
    font-size: 1.125rem;
    color: #323232;
    line-height: 1.375rem;
    margin-bottom: 2.375rem;
}
.v2-anchor-model-quickstats {
    position: relative;
    margin-bottom: 2.25rem;
    --v2-anchor-quickstat-num-h: 1.75rem;
    --v2-anchor-quickstat-gap: 0.5rem;
    --v2-anchor-quickstat-label-h: 1.125rem;
    --v2-anchor-quickstat-block-h: calc(var(--v2-anchor-quickstat-num-h) + var(--v2-anchor-quickstat-gap) + var(--v2-anchor-quickstat-label-h));
}
.v2-anchor-model-quickstat-boxes {
    display: flex;
    gap: 1.1875rem;
}
.v2-anchor-model-quickstat {
    flex: 1;
    background-color: rgba(0, 115, 255, 0.06);
    border-radius: 0.625rem;
    height: 6.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    box-sizing: border-box;
}
.v2-anchor-model-quickstat::before {
    content: '';
    display: block;
    width: 100%;
    height: var(--v2-anchor-quickstat-num-h);
    margin-bottom: var(--v2-anchor-quickstat-gap);
    flex-shrink: 0;
}
.v2-anchor-model-quickstats-numbers {
    position: absolute;
    top: calc(50% - var(--v2-anchor-quickstat-block-h) / 2);
    left: 0;
    right: 0;
    height: var(--v2-anchor-quickstat-num-h);
    display: flex;
    gap: 1.1875rem;
    pointer-events: none;
    background: linear-gradient(90deg, #008CFF 0%, #B260FF 40%, #FE6C6A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    line-height: 1;
}
.v2-anchor-model-quickstat-value {
    flex: 1;
    text-align: center;
    font-size: 1.75rem;
    font-family: "Gotham-Bold", sans-serif;
    line-height: var(--v2-anchor-quickstat-num-h);
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.v2-anchor-model-quickstat-label {
    font-size: 1.125rem;
    font-family: "Gotham-Book", sans-serif;
    color: #323232;
    line-height: var(--v2-anchor-quickstat-label-h);
    text-align: center;
}
.v2-anchor-model-specs-title {
    font-size: 1.375rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #0067bb;
    line-height: 1.375rem;
    margin-bottom: 1.125rem;
}
.v2-anchor-model-specs-table {
    width: 100%;
    margin-bottom: 2.375rem;
}
.v2-anchor-model-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .875rem 0;
    border-bottom: 0.0625rem solid #e8ecf0;
}
.v2-anchor-model-spec-row:first-of-type {
    border-top: 0.0625rem solid #e8ecf0;
}
.v2-anchor-model-spec-label {
    font-size: 1.125rem;
    font-family: "Gotham-Medium", sans-serif;
    color: #323232;
    line-height: 1.375rem;
}
.v2-anchor-model-spec-value {
    font-size: 1.125rem;
    font-family: "Gotham-Book", sans-serif;
    color: #323232;
    line-height: 1.375rem;
    text-align: right;
}
.v2-anchor-model-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(12, 136, 215, 1) 0%, rgba(100, 215, 155, 1) 100%);
    border-radius: 3.5rem;
    height: 2.5rem;
    padding: 0 1.25rem;
    font-size: 1.125rem;
    font-family: "Gotham-Medium", sans-serif;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    white-space: nowrap;
    margin-top: auto;
    align-self: flex-start;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s ease, color 0.3s ease;
}
.v2-anchor-model-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #6DC6FF 0%, #ADFFD4 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.v2-anchor-model-btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #034EA6 0%, #3BC877 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.1s ease;
}
.v2-anchor-model-btn:hover {
    color: rgba(255, 255, 255, 1);
}
.v2-anchor-model-btn:hover::before {
    opacity: 1;
}
.v2-anchor-model-btn:hover::after {
    opacity: 0;
}
.v2-anchor-model-btn:active::after {
    opacity: 1;
}

/* ==========================================
 * 4. Full Stack — dark section
 * ========================================== */
.v2-anchor-stack-section {
    background-color: #001c54;
    width: 100%;
    padding: 4.5rem 0 5rem;
}
.v2-anchor-stack-top {
    display: flex;
    gap: 5.25rem;
    align-items: flex-start;
    margin-bottom: 5rem;
}
.v2-anchor-stack-left {
    flex: 1;
    max-width: 43.5rem;
}
.v2-anchor-stack-title {
    font-size: 2.75rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #fff;
    line-height: 3.3125rem;
    margin-bottom: 0.5rem;
}
.v2-anchor-stack-body {
    font-size: 1.375rem;
    color: #c4daff;
    line-height: 1.625rem;
    margin-top: 0.5rem;
    max-width: 40.625rem;
}
.v2-anchor-stack-stats {
    display: grid;
    grid-template-columns: max-content max-content max-content;
    column-gap: 6.25rem;
    row-gap: 0.625rem;
    margin-top: 2.5rem;
    align-items: start;
}
.v2-anchor-stack-stats-numbers {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: subgrid;
    line-height: 1;
    background: linear-gradient(90deg, #008CFF 0%, #B260FF 40%, #FE6C6A 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.v2-anchor-stack-stat-number {
    font-size: 2.625rem;
    font-family: "Gotham-Bold", sans-serif;
    line-height: 2.875rem;
    color: transparent;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}
.v2-anchor-stack-stat-label {
    font-size: 1.125rem;
    font-family: "Gotham-Book", sans-serif;
    color: #c4daff;
    line-height: 1.375rem;
}
.v2-anchor-stack-stat-label--mid {
    width: 9.6875rem;
}
.v2-anchor-stack-stat-label--last {
    width: 8.5625rem;
    white-space: nowrap;
}
.v2-anchor-stack-right {
    flex-shrink: 0;
    width: 46.25rem;
}
.v2-anchor-stack-app-img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
    border-radius: 1.125rem;
    box-shadow: 0 0 0.9375rem 0 rgba(3, 22, 48, 0.73);
    display: block;
}
.v2-anchor-stack-cards {
    display: flex;
    gap: 2.5rem;
}
.v2-anchor-stack-card {
    flex: 1;
    background-color: #0c2d66;
    border-radius: 0.875rem;
    padding: 2.375rem 2.5rem 2.5rem;
    box-sizing: border-box;
    min-height: 22.375rem;
}
.v2-anchor-stack-card-icon {
    height: 2.4375rem;
    margin-bottom: 1.25rem;
    display: block;
}
.v2-anchor-stack-card-icon-firmware {
    width: 2.38125rem;
    height: 2.38125rem;
}
.v2-anchor-stack-card-title {
    font-size: 1.625rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #fff;
    line-height: 1.625rem;
    margin-bottom: 0.75rem;
}
.v2-anchor-stack-card-desc {
    font-size: 1.125rem;
    color: #c4daff;
    line-height: 1.25rem;
    margin-bottom: 1.25rem;
}
.v2-anchor-stack-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}
.v2-anchor-stack-card-bullets li {
    display: flex;
    align-items: flex-start;
    font-size: 1.125rem;
    font-family: "Gotham-Medium", sans-serif;
    color: #c4daff;
    line-height: 1.375rem;
    margin-bottom: 0.5rem;
}
.v2-anchor-stack-card-bullets li:last-child {
    margin-bottom: 0;
}
.v2-anchor-stack-card-bullets img {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    margin-top: 0.1875rem;
    flex-shrink: 0;
}

/* ==========================================
 * 5. Workflow — 3 cards
 * ========================================== */
.v2-anchor-workflow-section {
    padding: 4.5rem 0 4.5rem 0;
    background-color: #F5F5F7;
}
.v2-anchor-workflow-title {
    font-size: 2.75rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #323232;
    line-height: 3.3125rem;
}
.v2-anchor-workflow-subtitle {
    font-size: 1.375rem;
    color: #323232;
    line-height: 1.625rem;
    margin-top: .75rem;
    max-width: 60.3125rem;
}
.v2-anchor-workflow-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.375rem;
}
.v2-anchor-workflow-card {
    flex: 1;
    background-color: #fff;
    border-radius: 0.875rem;
    box-shadow: 0 0 0.625rem 0 rgba(34, 50, 72, 0.1);
    overflow: hidden;
}
.v2-anchor-workflow-card-img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    display: block;
    border-radius: 0.875rem 0.875rem 0 0;
}
.v2-anchor-workflow-card-body {
    padding: 2.25rem 2.5rem 2.5rem;
}
.v2-anchor-workflow-card-title {
    font-size: 1.625rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #323232;
    line-height: 1.625rem;
    margin-bottom: 0.75rem;
}
.v2-anchor-workflow-card-desc {
    font-size: 1.125rem;
    color: #323232;
    line-height: 1.375rem;
}

/* ==========================================
 * 6. Ecosystem — 3 cards
 * ========================================== */
.v2-anchor-eco-section {
    padding: 0 0 6.25rem;
    background-color: #F5F5F7;
}
.v2-anchor-eco-title {
    font-size: 2.75rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #323232;
    line-height: 3.3125rem;
}
.v2-anchor-eco-subtitle {
    font-size: 1.375rem;
    color: #323232;
    line-height: 1.625rem;
    margin-top: 0.75rem;
    max-width: 60.3125rem;
}
.v2-anchor-eco-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.375rem;
}
.v2-anchor-eco-card {
    flex: 1;
    background-color: #fff;
    border-radius: 0.875rem;
    box-shadow: 0 0 0.625rem 0 rgba(34, 50, 72, 0.1);
    overflow: hidden;
    transition: transform 0.6s ease;
}
.v2-anchor-eco-card:hover {
    transform: scale(1.01);
}
.v2-anchor-eco-card-img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    display: block;
}
.v2-anchor-eco-card-body {
    padding: 2.25rem 2.5rem 2.5rem;
}
.v2-anchor-eco-card-title {
    font-size: 1.625rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #323232;
    line-height: 1.625rem;
    margin-bottom: 0.75rem;
}
.v2-anchor-eco-card-desc {
    font-size: 1.125rem;
    color: #323232;
    line-height: 1.375rem;
    margin-bottom: 1.5rem;
    min-height: 4.125rem;
}
.v2-anchor-eco-card-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.125rem;
    font-family: "Gotham-Medium", sans-serif;
    color: #6d7b8b;
    text-decoration: none;
    transition: color 0.3s ease;
}
.v2-anchor-eco-card:hover .v2-anchor-eco-card-link,
.v2-anchor-eco-card-link:hover {
    color: #009cff;
}
.v2-anchor-eco-card-link-arrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 0.375rem;
    height: 1.5rem;
    color: inherit;
    width: 0.5rem;
    flex-shrink: 0;
}
.v2-anchor-eco-card-link-arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0.125rem;
    background: currentColor;
    width: 0;
    opacity: 0;
    transition: width 0.6s ease, opacity 0.6s ease;
}
.v2-anchor-eco-card-link-arrow::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-top: 0.1275rem solid currentColor;
    border-right: 0.1275rem solid currentColor;
    transform: rotate(45deg);
    display: inline-block;
    transition: transform 0.6s ease;
}
.v2-anchor-eco-card:hover .v2-anchor-eco-card-link-arrow::after,
.v2-anchor-eco-card-link:hover .v2-anchor-eco-card-link-arrow::after {
    transform: translateX(0.5rem) rotate(45deg);
}
.v2-anchor-eco-card:hover .v2-anchor-eco-card-link-arrow::before,
.v2-anchor-eco-card-link:hover .v2-anchor-eco-card-link-arrow::before {
    width: 0.75rem;
    opacity: 1;
    left: 0.3rem;
}

/* ==========================================
 * 7. Demo Kit CTA
 * ========================================== */
.v2-anchor-demo-section {
    padding: 0 0 6.25rem;
    background-color: #F5F5F7;
}
.v2-anchor-demo-card {
    background: linear-gradient(266deg, rgba(119, 240, 177, 1) 0%, rgba(0, 140, 255, 1) 31.39%, rgba(0, 104, 208, 1) 54.07%, rgba(0, 45, 127, 1) 88.43%);
    border-radius: 1.125rem;
    box-shadow: 0 0 0.9375rem 0 rgba(34, 50, 72, 0.1);
    height: 26.25rem;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
}
.v2-anchor-demo-content {
    padding: 4.5rem 0 4.5rem 3.75rem;
    position: relative;
    z-index: 1;
}
.v2-anchor-demo-title {
    font-size: 2.75rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #fff;
    line-height: 3.3125rem;
    margin-bottom: 0.813rem;
}
.v2-anchor-demo-body {
    font-size: 1.125rem;
    color: #fff;
    line-height: 1.375rem;
    max-width: 43.063rem;
    margin-bottom: 0.813rem;
}
.v2-anchor-demo-highlight {
    font-size: 1.6875rem;
    font-family: "Gotham-Bold", sans-serif;
    color: #fff;
    line-height: 1.688rem;
    margin-bottom: 2rem;
}
.v2-anchor-demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(87deg, rgba(255, 125, 113, 1) 19.45%, rgba(255, 152, 79, 1) 100%);
    border-radius: 3.75rem;
    height: 2.5rem;
    padding: 0 1.25rem;
    font-size: 1.125rem;
    font-family: "Gotham-Medium", sans-serif;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s ease;
}
.v2-anchor-demo-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: linear-gradient(93deg, #FFB69A 21.84%, #FFD4B5 95.64%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.v2-anchor-demo-btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: linear-gradient(93deg, #E74034 21.84%, #FF9C45 87.28%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.1s ease;
}
.v2-anchor-demo-btn:hover {
    color: #fff;
}
.v2-anchor-demo-btn:hover::before {
    opacity: 1;
}
.v2-anchor-demo-btn:active::after {
    opacity: 1;
}
.v2-anchor-demo-img {
    position: absolute;
    right: 5rem;
    top: -3.9375rem;
    width: 38rem;
    height: 36.4375rem;
    object-fit: contain;
    z-index: 0;
}

/* ==========================================
 * Responsive: ≤768px
 * ========================================== */
@media (max-width: 768px) {
    .v2-anchor-hero {
        height: auto;
        min-height: 25rem;
    }
    .v2-anchor-hero-content {
        padding: 3rem 1rem 2rem;
    }
    .v2-anchor-hero-title-l1,
    .v2-anchor-hero-title-l2 {
        font-size: 1.75rem;
        line-height: 2.125rem;
    }
    .v2-anchor-hero-body {
        font-size: 1rem;
        max-width: 100%;
    }
    .v2-anchor-hero-btns {
        flex-direction: column;
        gap: 0.75rem;
    }
    .v2-anchor-stats-card {
        width: calc(50% - 0.5rem);
        flex: none;
        justify-content: center;
    }
    .v2-anchor-stats-grid {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .v2-anchor-stats-numbers {
        flex-wrap: wrap;
        row-gap: 1rem;
        height: auto;
        position: static;
        margin-bottom: 1rem;
        gap: 1rem;
    }
    .v2-anchor-stats-number {
        width: calc(50% - 0.5rem);
        flex: none;
        line-height: 2.625rem;
    }
    .v2-anchor-stats-card::before {
        display: none;
    }
    .v2-anchor-models-grid,
    .v2-anchor-stack-top,
    .v2-anchor-stack-cards,
    .v2-anchor-workflow-grid,
    .v2-anchor-eco-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    .v2-anchor-stack-right {
        width: 100%;
    }
    .v2-anchor-stack-app-img {
        height: auto;
    }
    .v2-anchor-stack-stats {
        grid-template-columns: 1fr;
        row-gap: 1.5rem;
    }
    .v2-anchor-stack-stats-numbers {
        grid-column: 1;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .v2-anchor-stack-stat-label--mid,
    .v2-anchor-stack-stat-label--last {
        width: auto;
        white-space: normal;
    }
    .v2-anchor-model-body {
        padding: 1.5rem;
    }
    .v2-anchor-model-quickstats-numbers {
        position: static;
        margin-bottom: 0.75rem;
        height: auto;
    }
    .v2-anchor-model-quickstat::before {
        display: none;
    }
    .v2-anchor-model-quickstat-boxes {
        flex-direction: column;
        gap: 0.75rem;
    }
    .v2-anchor-model-quickstat {
        height: auto;
        padding: 1rem;
    }
    .v2-anchor-demo-card {
        height: auto;
        min-height: 26.25rem;
    }
    .v2-anchor-demo-content {
        padding: 2.5rem 1.5rem;
    }
    .v2-anchor-demo-img {
        position: relative;
        top: auto;
        right: auto;
        width: 60%;
        height: auto;
        margin: 0 auto;
        display: block;
    }
}
