/* ==================== Reset & Base ==================== */
/* Scoped reset - only affects .mantis-cn-agent-page */
.mantis-cn-agent-page,
.mantis-cn-agent-page *,
.mantis-cn-agent-page *::before,
.mantis-cn-agent-page *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mantis-cn-agent-page {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.mantis-cn-agent-page img {
    display: block;
    max-width: 100%;
}

.mantis-cn-agent-page a {
    text-decoration: none;
    color: inherit;
}

.mantis-cn-agent-page .container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding-left: 90px;
    padding-right: 90px;
}

/* ==================== Hero Section ==================== */
.mantis-cn-agent-page .hero-section {
    width: 100%;
    position: relative;
    background: #080B1A;
    overflow: hidden;
}

.mantis-cn-agent-page .hero-section .hero-bg {
    width: 100%;
    height: 690px;
    object-fit: cover;
}

.mantis-cn-agent-page .hero-section .hero-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 2;
    text-align: center;
    padding-top: 150px;
}

.mantis-cn-agent-page .hero-section .hero-content-bg {
    width: 100%;
    height: 70px;
    position: absolute;
    bottom: 0;
    background: linear-gradient(0deg, #0B0310 0%, rgba(11, 3, 16, 0.00) 100%);
}

.mantis-cn-agent-page .hero-section .hero-content .title {
    font-family: "PingFang SC";
    font-size: 78px;
    font-weight: 500;
    color: #fff;
}

.mantis-cn-agent-page .hero-section .hero-content .title-color {
    background: linear-gradient(90deg, #00EBD6 20.35%, #3330FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "PingFang SC";
    font-size: 78px;
    font-style: normal;
    font-weight: 500;
}

.mantis-cn-agent-page .hero-section .hero-content p {
    margin-top: 20px;
    font-size: 20px;
    color: #fff;
    font-family: "PingFang SC";
}

/* ==================== Enterprise AI Section ==================== */
.mantis-cn-agent-page .enterprise-section {
    background: #0B0310;
    padding: 90px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mantis-cn-agent-page .enterprise-section .section-title {
    text-align: center;
    font-size: 64px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 80px;
}

.mantis-cn-agent-page .enterprise-section .section-title span {
    background: linear-gradient(90deg, #00EFD6 9.62%, #2E63FE 38.94%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "PingFang SC";
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
}

/* Tab radio inputs - hidden */
.mantis-cn-agent-page .tab-radio {
    display: none;
}

.mantis-cn-agent-page .tab-switcher {
    display: flex;
    align-items: center;
    padding: 7px 8px;
    border-radius: 30px;
    border: 1px solid rgb(89, 114, 182, 0.5);
    backdrop-filter: blur(3.1500000953674316px);
}

.mantis-cn-agent-page .tab-switcher .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    padding: 13px 65px;
    border-radius: 30px;
    background: #0D121C;
    cursor: pointer;
    color: #fff;
    border: 0.8px solid transparent;
    transition: all 0.3s;
}

/* Active tab style driven by :checked */
.mantis-cn-agent-page #tab-radio-1:checked ~ .tab-switcher .tab[for="tab-radio-1"],
.mantis-cn-agent-page #tab-radio-2:checked ~ .tab-switcher .tab[for="tab-radio-2"] {
    border: 0.8px solid rgba(78, 94, 138, 0.37);
    background: linear-gradient(271deg, #273147 9.31%, rgba(43, 58, 91, 0.26) 94.72%);
    backdrop-filter: blur(3.1500000953674316px);
}

.mantis-cn-agent-page #tab-radio-1:checked ~ .tab-switcher .tab[for="tab-radio-1"] span,
.mantis-cn-agent-page #tab-radio-2:checked ~ .tab-switcher .tab[for="tab-radio-2"] span {
    background: linear-gradient(90deg, #00EFD6 0%, #2E60FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mantis-cn-agent-page .tab-subtitle {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    color: #fff;
}

.mantis-cn-agent-page .tab-subtitle span {
    background: linear-gradient(90deg, #00EFD6 0%, #82A0FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mantis-cn-agent-page .enterprise-diagram {
    width: 75vw;
    max-width: 1080px;
    margin: 20px auto 0;
    border-radius: 10px;
    overflow: hidden;
}

.mantis-cn-agent-page .enterprise-diagram img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tab content panels - animated via :checked */
.mantis-cn-agent-page .tab-panels {
    display: grid;
    width: 100%;
}

.mantis-cn-agent-page .tab-panel {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    visibility: hidden;
}

.mantis-cn-agent-page #tab-radio-1:checked ~ .tab-panels .tab-panel-1,
.mantis-cn-agent-page #tab-radio-2:checked ~ .tab-panels .tab-panel-2 {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.mantis-cn-agent-page .tab-panel-title {
    display: none;
}

/* ==================== AI Marketing Section ==================== */
.mantis-cn-agent-page .marketing-section {
    padding: 90px 0;
    background: linear-gradient(180deg, rgb(241, 248, 255, 0.2) 0%, rgb(241, 248, 255) 100%);
}

.mantis-cn-agent-page .marketing-section .section-title {
    text-align: center;
    font-size: 64px;
    font-weight: 500;
    color: #1E1E1E;
}

.mantis-cn-agent-page .marketing-section .section-title .highlight {
    background: linear-gradient(135deg, #2ec4f6, #5b6eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mantis-cn-agent-page .marketing-section .section-subtitle {
    text-align: center;
    margin-top: 20px;
    font-size: 24px;
    color: #282828;
}

.mantis-cn-agent-page .agent-cards {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 85px;
    padding: 0 89px;
}

.mantis-cn-agent-page .agent-card {
    background: #fff;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    flex-shrink: 0;
}

.mantis-cn-agent-page .agent-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    background: #fff;
    border-color: rgba(46, 196, 246, 0.15);
}

.mantis-cn-agent-page .agent-card .card-visual {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: opacity 0.35s ease;
}

.mantis-cn-agent-page .agent-card .card-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 19px;
}

.mantis-cn-agent-page .agent-card .card-image img {
    width: 264px;
    height: 240px;
    object-fit: contain;
}

.mantis-cn-agent-page .agent-card .card-bottom {
    padding: 0 24px 34px;
}

.mantis-cn-agent-page .agent-card .card-bottom h3 {
    font-size: 24px;
    font-weight: 500;
    color: #282828;
    margin-bottom: 10px;
}

.mantis-cn-agent-page .agent-card .card-bottom p {
    font-size: 18px;
    color: #282828;
}

.mantis-cn-agent-page .agent-card .card-detail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 14px;
    background: linear-gradient(180deg, #EFF6FF 0%, #FFF 100%);
    box-shadow: 0 4px 23px 0 #D7E9FF;
}

.mantis-cn-agent-page .agent-card:hover .card-visual {
    opacity: 0;
}

.mantis-cn-agent-page .agent-card:hover .card-detail {
    opacity: 1;
}

.mantis-cn-agent-page .card-detail .accent-line {
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 235, 214, 0.00) 0%, #00EBD6 48.73%, rgba(0, 235, 214, 0.00) 100%);
}

.mantis-cn-agent-page .card-detail .card-icon {
    width: 100px;
    margin-left: -20px;
    margin-top: 20px;
    overflow: hidden;
}

.mantis-cn-agent-page .card-detail h3 {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 500;
    color: #282828;
}

.mantis-cn-agent-page .card-detail .card-subtitle {
    margin-top: 5px;
    font-size: 18px;
    color: #282828;
}

.mantis-cn-agent-page .card-detail .card-desc {
    margin-top: 17px;
    font-size: 16px;
    color: #282828;
    line-height: 1.5;
}

/* ==================== Industry Sections (shared) ==================== */
.mantis-cn-agent-page .industry-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #FFF 0%, #F1F8FF 100%);
}

.mantis-cn-agent-page .industry-section .section-title {
    margin-bottom: 90px;
    text-align: center;
    font-size: 64px;
    font-weight: 500;
    color: #1E1E1E;
}

.mantis-cn-agent-page .industry-section .section-title .highlight {
    background: linear-gradient(135deg, #2ec4f6, #5b6eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mantis-cn-agent-page .industry-tag {
    width: fit-content;
    font-size: 24px;
    font-weight: 500;
    margin: 0 auto;
    line-height: 1;
    padding: 10px 45px;
    border-radius: 30px;
    border: 1px solid #FFF;
    background: #FFF;
    box-shadow: 0 4px 23px 0 rgba(130, 160, 255, 0.30);
}

.mantis-cn-agent-page .industry-tag .color {
    background: linear-gradient(92deg, #00EBD6 6.19%, #306CFF 56.94%, #5D41FF 99.61%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mantis-cn-agent-page .industry-content {
    display: flex;
    align-items: center;
    padding: 90px 90px 0 90px;
    gap: 50px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.mantis-cn-agent-page .industry-content.reverse {
    flex-direction: row-reverse;
}

.mantis-cn-agent-page .industry-text {
    flex: 1;
    min-width: 0;
}

.mantis-cn-agent-page .industry-text h3 {
    color: #282828;
    font-family: "PingFang SC";
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
}

.mantis-cn-agent-page .industry-text .industry-desc {
    color: #282828;
    font-family: "PingFang SC";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    margin-top: 20px;
    line-height: 1.5;
}

.mantis-cn-agent-page .industry-illustration {
    width: 702px;
    flex-shrink: 0;
}

.mantis-cn-agent-page .industry-illustration img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.mantis-cn-agent-page .cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 10px 22px;
    border-radius: 10px;
    background: #0B1220;
    transition: all 0.3s;
    cursor: pointer;
}

.mantis-cn-agent-page .cta-outline span {
    font-size: 18px;
    background: linear-gradient(90deg, #00EBD6 48.69%, #306CFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mantis-cn-agent-page .cta-outline:hover {
    box-shadow: 0 6px 24px rgba(46, 196, 246, 0.35);
    transform: translateY(-2px);
}

.mantis-cn-agent-page .cta-outline svg {
    width: 11px;
    height: 12px;
}

/* Section Divider */
.mantis-cn-agent-page .section-divider {
    height: 100px;
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.mantis-cn-agent-page .section-divider .section-divider-bottom-svg1 svg {
    position: absolute;
    bottom: 5px;
    width: 100%;
}

.mantis-cn-agent-page .section-divider .section-divider-bottom-svg2 svg {
    width: 100%;
}

/* Solutions Area */
.mantis-cn-agent-page .solutions-area {
    padding: 70px 90px 0 90px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(180deg, #FFF 0%, #F1F8FF 100%);
}

.mantis-cn-agent-page .solutions-area .solutions-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #1a1e2c;
    margin-bottom: 50px;
}

.mantis-cn-agent-page .solutions-area .solutions-title .highlight {
    background: linear-gradient(135deg, #2ec4f6, #5b6eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mantis-cn-agent-page .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mantis-cn-agent-page .feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    gap: 23px;
    align-items: flex-start;
    transition: all 0.3s;
}

.mantis-cn-agent-page .feature-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    background: linear-gradient(99deg, #00EBD6 1.67%, #306CFF 34.52%, #5D41FF 100%);
}

.mantis-cn-agent-page .feature-card:hover .feature-icon {
    background-color: #fff;
}

.mantis-cn-agent-page .feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    background: rgba(0, 235, 214, 0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mantis-cn-agent-page .feature-icon svg {
    width: 36px;
    height: 36px;
}

.mantis-cn-agent-page .feature-card .feature-info {
    color: #282828;
}

.mantis-cn-agent-page .feature-card:hover .feature-info {
    color: #fff;
}

.mantis-cn-agent-page .feature-info h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 11px;
}

.mantis-cn-agent-page .feature-info p {
    font-size: 16px;
}

.mantis-cn-agent-page .center-cta {
    display: block;
    width: fit-content;
    text-align: center;
    padding: 17px 43px;
    margin: 60px auto 0;
    border-radius: 30px;
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(45deg, #00EBD6, #306CFF);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 12px 27px rgba(46, 196, 246, 0.15);
    color: #1E1E1E;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
}

/* ==================== AI Capabilities Section ==================== */
.mantis-cn-agent-page .capabilities-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    background-image:
        radial-gradient(ellipse 90% 100% at 80% 26%, rgba(170, 170, 235, 0.3) 0%, transparent 70%),
        radial-gradient(ellipse 80% 55% at 30% 60%, rgba(100, 230, 210, 0.3) 0%, transparent 70%);
}

.mantis-cn-agent-page .capabilities-section .section-title {
    text-align: center;
    font-size: 64px;
    font-weight: 500;
    color: #1E1E1E;
    margin-bottom: 50px;
}

.mantis-cn-agent-page .capabilities-section .section-title span {
    background: linear-gradient(90deg, #00EBD6 0%, #306CFF 16.83%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==================== CTA Section ==================== */
.mantis-cn-agent-page .cta-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.mantis-cn-agent-page .cta-card {
    border-radius: 50px;
    width: 100%;
    padding: 60px 85px;
    background-color: #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mantis-cn-agent-page .cta-card::before,
.mantis-cn-agent-page .cta-card::after {
    content: '';
    position: absolute;
    width: 444px;
    height: 488px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(50px);
}

.mantis-cn-agent-page .cta-card::before {
    background: radial-gradient(circle, transparent 31%, #00EBD6 32%, #306CFF 100%);
    top: -288px;
    left: -176px;
}

.mantis-cn-agent-page .cta-card::after {
    background: radial-gradient(circle, transparent 31%, #306CFF 32%, #00EBD6 100%);
    bottom: -260px;
    right: -180px;
}

.mantis-cn-agent-page .cta-card h2 {
    font-size: 60px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.mantis-cn-agent-page .cta-card h2 span {
    background: linear-gradient(90deg, #00EBD6 50.48%, #306CFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "PingFang SC";
}

.mantis-cn-agent-page .cta-card .cta-btn {
    display: block;
    width: fit-content;
    text-align: center;
    padding: 17px 66px;
    margin: 60px auto 0;
    border-radius: 30px;
    border: 2px solid transparent;
    background-image: linear-gradient(115deg, #030303 45.9%, #031967 87.48%), linear-gradient(45deg, #00EBD6, #306CFF);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 12px 27px rgba(46, 196, 246, 0.15);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
}

.mantis-cn-agent-page .cta-card .cta-btn:hover {
    transform: translateY(-2px);
}

/* ==================================================================
   RESPONSIVE: 801px - 1280px
   ================================================================== */
@media (max-width: 1280px) and (min-width: 801px) {

    .mantis-cn-agent-page .container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .mantis-cn-agent-page .hero-section .hero-bg {
        height: 520px;
    }

    .mantis-cn-agent-page .hero-section .hero-content {
        padding-top: 130px;
    }

    .mantis-cn-agent-page .hero-section .hero-content .title {
        font-size: 56px;
    }

    .mantis-cn-agent-page .hero-section .hero-content .title-color {
        font-size: 56px;
    }

    .mantis-cn-agent-page .hero-section .hero-content p {
        font-size: 18px;
    }

    .mantis-cn-agent-page .enterprise-section {
        padding: 60px 0;
    }

    .mantis-cn-agent-page .enterprise-section .section-title {
        font-size: 46px;
        margin-bottom: 50px;
    }

    .mantis-cn-agent-page .enterprise-section .section-title span {
        font-size: 46px;
    }

    .mantis-cn-agent-page .tab-switcher .tab {
        font-size: 17px;
        padding: 12px 40px;
    }

    .mantis-cn-agent-page .tab-subtitle {
        font-size: 16px;
    }

    .mantis-cn-agent-page .enterprise-diagram {
        width: 80vw;
    }

    .mantis-cn-agent-page .marketing-section {
        padding: 60px 0;
    }

    .mantis-cn-agent-page .marketing-section .section-title {
        font-size: 46px;
    }

    .mantis-cn-agent-page .marketing-section .section-subtitle {
        font-size: 20px;
    }

    .mantis-cn-agent-page .agent-cards {
        padding: 0;
        margin-top: 55px;
        gap: 14px;
    }

    .mantis-cn-agent-page .agent-card .card-image img {
        width: 200px;
        height: 180px;
    }

    .mantis-cn-agent-page .agent-card .card-bottom h3 {
        font-size: 20px;
    }

    .mantis-cn-agent-page .agent-card .card-bottom p {
        font-size: 16px;
    }

    .mantis-cn-agent-page .card-detail {
        padding: 0 22px;
    }

    .mantis-cn-agent-page .card-detail .card-icon {
        width: 80px;
    }

    .mantis-cn-agent-page .card-detail h3 {
        font-size: 20px;
    }

    .mantis-cn-agent-page .card-detail .card-subtitle {
        font-size: 16px;
    }

    .mantis-cn-agent-page .card-detail .card-desc {
        font-size: 14px;
    }

    .mantis-cn-agent-page .industry-section {
        padding: 60px 0;
    }

    .mantis-cn-agent-page .industry-section .section-title {
        font-size: 46px;
        margin-bottom: 55px;
    }

    .mantis-cn-agent-page .industry-tag {
        font-size: 20px;
        padding: 10px 30px;
    }

    .mantis-cn-agent-page .industry-content {
        padding: 55px 50px 0;
        gap: 30px;
    }

    .mantis-cn-agent-page .industry-illustration {
        width: 500px;
    }

    .mantis-cn-agent-page .industry-text h3 {
        font-size: 28px;
    }

    .mantis-cn-agent-page .industry-text .industry-desc {
        font-size: 16px;
    }

    .mantis-cn-agent-page .cta-outline span {
        font-size: 16px;
    }

    .mantis-cn-agent-page .solutions-area {
        padding: 50px 50px 0;
    }

    .mantis-cn-agent-page .solutions-area .solutions-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .mantis-cn-agent-page .feature-card {
        padding: 30px 22px;
    }

    .mantis-cn-agent-page .feature-icon {
        width: 50px;
        height: 50px;
    }

    .mantis-cn-agent-page .feature-icon svg {
        width: 30px;
        height: 30px;
    }

    .mantis-cn-agent-page .feature-info h4 {
        font-size: 20px;
    }

    .mantis-cn-agent-page .feature-info p {
        font-size: 14px;
    }

    .mantis-cn-agent-page .center-cta {
        margin-top: 40px;
    }

    .mantis-cn-agent-page .capabilities-section .section-title {
        font-size: 46px;
    }

    .mantis-cn-agent-page .cta-card {
        border-radius: 40px;
        padding: 45px 55px;
    }

    .mantis-cn-agent-page .cta-card h2 {
        font-size: 42px;
    }

    .mantis-cn-agent-page .cta-card .cta-btn {
        margin-top: 40px;
    }

    .mantis-cn-agent-page .cta-card::before,
    .mantis-cn-agent-page .cta-card::after {
        width: 300px;
        height: 340px;
    }
}

/* ==================================================================
   RESPONSIVE: 521px - 800px
   ================================================================== */
@media (max-width: 800px) and (min-width: 521px) {

    .mantis-cn-agent-page .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .mantis-cn-agent-page .hero-section .hero-bg {
        height: 380px;
    }

    .mantis-cn-agent-page .hero-section .hero-content {
        padding-top: 90px;
    }

    .mantis-cn-agent-page .hero-section .hero-content .title {
        font-size: 42px;
    }

    .mantis-cn-agent-page .hero-section .hero-content .title-color {
        font-size: 42px;
    }

    .mantis-cn-agent-page .hero-section .hero-content p {
        font-size: 16px;
        margin-top: 14px;
    }

    .mantis-cn-agent-page .hero-section .hero-content-bg {
        height: 40px;
    }

    .mantis-cn-agent-page .enterprise-section {
        padding: 50px 0;
    }

    .mantis-cn-agent-page .enterprise-section .section-title {
        font-size: 34px;
        margin-bottom: 40px;
        padding: 0 30px;
    }

    .mantis-cn-agent-page .enterprise-section .section-title span {
        font-size: 34px;
    }

    .mantis-cn-agent-page .tab-switcher {
        flex-direction: column;
        border-radius: 16px;
        margin: 0 30px;
    }

    .mantis-cn-agent-page .tab-switcher .tab {
        font-size: 15px;
        padding: 12px 30px;
        border-radius: 12px;
        width: 100%;
        text-align: center;
    }

    .mantis-cn-agent-page .tab-subtitle {
        font-size: 15px;
        margin-top: 30px;
        padding: 0 30px;
    }

    .mantis-cn-agent-page .enterprise-diagram {
        width: 90vw;
    }

    .mantis-cn-agent-page .marketing-section {
        padding: 50px 0;
    }

    .mantis-cn-agent-page .marketing-section .section-title {
        font-size: 34px;
    }

    .mantis-cn-agent-page .marketing-section .section-subtitle {
        font-size: 18px;
    }

    .mantis-cn-agent-page .agent-cards {
        flex-wrap: wrap;
        padding: 0;
        margin-top: 40px;
        gap: 16px;
    }

    .mantis-cn-agent-page .agent-card {
        width: calc(50% - 8px);
        flex-shrink: 1;
    }

    .mantis-cn-agent-page .agent-card .card-image {
        padding: 14px;
    }

    .mantis-cn-agent-page .agent-card .card-image img {
        width: 180px;
        height: 160px;
    }

    .mantis-cn-agent-page .agent-card .card-bottom {
        padding: 0 18px 24px;
        text-align: center;
    }

    .mantis-cn-agent-page .agent-card .card-bottom h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .mantis-cn-agent-page .agent-card .card-bottom p {
        font-size: 14px;
    }

    .mantis-cn-agent-page .card-detail {
        padding: 0 20px;
    }

    .mantis-cn-agent-page .card-detail .card-icon {
        width: 70px;
        margin-top: 14px;
    }

    .mantis-cn-agent-page .card-detail h3 {
        font-size: 18px;
        margin-top: 8px;
    }

    .mantis-cn-agent-page .card-detail .card-subtitle {
        font-size: 14px;
    }

    .mantis-cn-agent-page .card-detail .card-desc {
        font-size: 13px;
        margin-top: 12px;
    }

    .mantis-cn-agent-page .industry-section {
        padding: 50px 0;
    }

    .mantis-cn-agent-page .industry-section .section-title {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .mantis-cn-agent-page .industry-tag {
        font-size: 18px;
        padding: 8px 25px;
    }

    .mantis-cn-agent-page .industry-content {
        flex-direction: column;
        padding: 40px 30px 0;
        gap: 30px;
    }

    .mantis-cn-agent-page .industry-content.reverse {
        flex-direction: column;
    }

    .mantis-cn-agent-page .industry-illustration {
        width: 100%;
    }

    .mantis-cn-agent-page .industry-text h3 {
        font-size: 24px;
    }

    .mantis-cn-agent-page .industry-text .industry-desc {
        font-size: 15px;
        margin-top: 16px;
    }

    .mantis-cn-agent-page .cta-outline {
        margin-top: 22px;
        padding: 9px 18px;
    }

    .mantis-cn-agent-page .cta-outline span {
        font-size: 15px;
    }

    .mantis-cn-agent-page .section-divider {
        height: 70px;
    }

    .mantis-cn-agent-page .solutions-area {
        padding: 40px 30px 0;
    }

    .mantis-cn-agent-page .solutions-area .solutions-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .mantis-cn-agent-page .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .mantis-cn-agent-page .feature-card {
        padding: 24px 18px;
        gap: 16px;
    }

    .mantis-cn-agent-page .feature-icon {
        width: 46px;
        height: 46px;
    }

    .mantis-cn-agent-page .feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .mantis-cn-agent-page .feature-info h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .mantis-cn-agent-page .feature-info p {
        font-size: 13px;
    }

    .mantis-cn-agent-page .center-cta {
        margin-top: 35px;
        font-size: 14px;
        padding: 14px 36px;
    }

    .mantis-cn-agent-page .capabilities-section {
        padding: 50px 0;
    }

    .mantis-cn-agent-page .capabilities-section .section-title {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .mantis-cn-agent-page .cta-section {
        padding: 50px 0;
    }

    .mantis-cn-agent-page .cta-card {
        border-radius: 30px;
        padding: 40px 30px;
    }

    .mantis-cn-agent-page .cta-card h2 {
        font-size: 30px;
    }

    .mantis-cn-agent-page .cta-card .cta-btn {
        margin-top: 35px;
        padding: 14px 40px;
    }

    .mantis-cn-agent-page .cta-card::before,
    .mantis-cn-agent-page .cta-card::after {
        width: 220px;
        height: 240px;
    }

    .mantis-cn-agent-page .cta-card::before {
        top: -160px;
        left: -100px;
    }

    .mantis-cn-agent-page .cta-card::after {
        bottom: -140px;
        right: -100px;
    }
}

/* ==================================================================
   RESPONSIVE: <=520px
   ================================================================== */
@media (max-width: 520px) {

    .mantis-cn-agent-page .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .mantis-cn-agent-page .hero-section .hero-bg {
        height: 330px;
    }

    .mantis-cn-agent-page .hero-section .hero-content {
        padding-top: 80px;
    }

    .mantis-cn-agent-page .hero-section .hero-content .title {
        font-size: 32px;
    }

    .mantis-cn-agent-page .hero-section .hero-content .title-color {
        font-size: 32px;
    }

    .mantis-cn-agent-page .hero-section .hero-content p {
        font-size: 14px;
        margin-top: 12px;
    }

    .mantis-cn-agent-page .hero-section .hero-content-bg {
        height: 30px;
    }

    .mantis-cn-agent-page .enterprise-section {
        padding: 40px 0;
    }

    .mantis-cn-agent-page .enterprise-section .section-title {
        font-size: 24px;
        margin-bottom: 28px;
        padding: 0 16px;
    }

    .mantis-cn-agent-page .enterprise-section .section-title span {
        font-size: 24px;
    }

    .mantis-cn-agent-page .tab-switcher {
        display: none;
    }

    .mantis-cn-agent-page .tab-panels {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .mantis-cn-agent-page .tab-panel {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        position: relative;
    }

    .mantis-cn-agent-page .tab-panel-title {
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        margin: 0 auto 4px;
        font-size: 16px;
        font-weight: 400;
        line-height: 1;
        padding: 12px 28px;
        border-radius: 30px;
        color: #fff;
        border: 0.8px solid rgba(78, 94, 138, 0.37);
        background: linear-gradient(271deg, #273147 9.31%, rgba(43, 58, 91, 0.26) 94.72%);
        backdrop-filter: blur(3.15px);
    }

    .mantis-cn-agent-page .tab-panel-title span {
        background: linear-gradient(90deg, #00EFD6 0%, #2E60FF 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .mantis-cn-agent-page .tab-subtitle {
        font-size: 13px;
        margin-top: 16px;
        padding: 0 16px;
    }

    .mantis-cn-agent-page .enterprise-diagram {
        width: 95vw;
        margin-top: 25px;
    }

    .mantis-cn-agent-page .marketing-section {
        padding: 40px 0;
    }

    .mantis-cn-agent-page .marketing-section .section-title {
        font-size: 26px;
    }

    .mantis-cn-agent-page .marketing-section .section-subtitle {
        font-size: 15px;
        margin-top: 14px;
    }

    .mantis-cn-agent-page .agent-cards {
        flex-direction: column;
        padding: 0;
        margin-top: 30px;
        gap: 14px;
    }

    .mantis-cn-agent-page .agent-card {
        flex-shrink: 1;
    }

    .mantis-cn-agent-page .agent-card .card-visual {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .mantis-cn-agent-page .agent-card .card-image {
        padding: 14px;
    }

    .mantis-cn-agent-page .agent-card .card-image img {
        width: 160px;
        height: 140px;
    }

    .mantis-cn-agent-page .agent-card .card-bottom {
        padding: 0 16px 20px;
        text-align: center;
    }

    .mantis-cn-agent-page .agent-card .card-bottom h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .mantis-cn-agent-page .agent-card .card-bottom p {
        font-size: 13px;
    }

    .mantis-cn-agent-page .card-detail {
        padding: 0 16px;
    }

    .mantis-cn-agent-page .card-detail .card-icon {
        width: 40px;
        margin-left: -10px;
        margin-top: 5px;
    }

    .mantis-cn-agent-page .card-detail h3 {
        font-size: 17px;
        margin-top: 0;
    }

    .mantis-cn-agent-page .card-detail .card-subtitle {
        font-size: 13px;
    }

    .mantis-cn-agent-page .card-detail .card-desc {
        font-size: 12px;
        margin-top: 5px;
    }

    .mantis-cn-agent-page .industry-section {
        padding: 40px 0;
    }

    .mantis-cn-agent-page .industry-section .section-title {
        font-size: 24px;
        margin-bottom: 28px;
        padding: 0 16px;
    }

    .mantis-cn-agent-page .industry-tag {
        font-size: 15px;
        padding: 8px 20px;
    }

    .mantis-cn-agent-page .industry-content {
        flex-direction: column;
        padding: 28px 16px 0;
        gap: 24px;
    }

    .mantis-cn-agent-page .industry-content.reverse {
        flex-direction: column;
    }

    .mantis-cn-agent-page .industry-illustration {
        width: 100%;
    }

    .mantis-cn-agent-page .industry-text h3 {
        font-size: 20px;
    }

    .mantis-cn-agent-page .industry-text .industry-desc {
        font-size: 14px;
        margin-top: 14px;
    }

    .mantis-cn-agent-page .cta-outline {
        margin-top: 18px;
        padding: 8px 16px;
    }

    .mantis-cn-agent-page .cta-outline span {
        font-size: 14px;
    }

    .mantis-cn-agent-page .section-divider {
        height: 70px;
    }

    .mantis-cn-agent-page .solutions-area {
        padding: 30px 16px 0;
    }

    .mantis-cn-agent-page .solutions-area .solutions-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .mantis-cn-agent-page .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mantis-cn-agent-page .feature-card {
        padding: 20px 16px;
        gap: 14px;
    }

    .mantis-cn-agent-page .feature-icon {
        width: 42px;
        height: 42px;
    }

    .mantis-cn-agent-page .feature-icon svg {
        width: 26px;
        height: 26px;
    }

    .mantis-cn-agent-page .feature-info h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .mantis-cn-agent-page .feature-info p {
        font-size: 13px;
    }

    .mantis-cn-agent-page .center-cta {
        margin-top: 28px;
        padding: 14px 30px;
        font-size: 14px;
    }

    .mantis-cn-agent-page .capabilities-section {
        padding: 40px 0;
    }

    .mantis-cn-agent-page .capabilities-section .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .mantis-cn-agent-page .cta-section {
        padding: 40px 0;
    }

    .mantis-cn-agent-page .cta-card {
        border-radius: 20px;
        padding: 30px 20px;
    }

    .mantis-cn-agent-page .cta-card h2 {
        font-size: 22px;
        line-height: 1.6;
    }

    .mantis-cn-agent-page .cta-card .cta-btn {
        margin-top: 28px;
        padding: 12px 36px;
        font-size: 14px;
    }

    .mantis-cn-agent-page .cta-card::before,
    .mantis-cn-agent-page .cta-card::after {
        width: 150px;
        height: 170px;
    }

    .mantis-cn-agent-page .cta-card::before {
        top: -100px;
        left: -80px;
    }

    .mantis-cn-agent-page .cta-card::after {
        bottom: -100px;
        right: -80px;
    }
}
