/* 重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 移动端按钮点击样式优化 */
button, .btn, [role="button"], .clickable {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    border: none;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button:focus, .btn:focus, [role="button"]:focus, .clickable:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

button:active, .btn:active, [role="button"]:active, .clickable:active {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

/* Safari动画优化 */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 硬件加速优化 */
.features-card,
.features-card img {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Aeonik TRIAL', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航样式已移至 css/header.css */

/* 英雄区块 */
.hero-section {
    position: relative;
    background: -webkit-gradient(linear, left top, left bottom, from(#01241E), to(#197829));
    background: -webkit-linear-gradient(top, #01241E 0%, #197829 100%);
    background: linear-gradient(180deg, #01241E 0%, #197829 100%);
    padding: 80px 0 120px;
    height: 920px;
}

.hero-background {
    position: absolute;
    top: 550px;
    left: -webkit-calc(50% - 500px);
    left: calc(50% - 500px);
    z-index: 1;
    width: 1000px;
    pointer-events: none;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1444px;
    margin: 0 auto;
    padding: 0 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.hero-content {
    max-width: 1006px;
    color: white;
    text-align: center;
    padding-top:100px;
}

.hero-text {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
}

.hero-subtitle {
    font-family: 'Aeonik TRIAL', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0;
    text-align: center;
}

.hero-title {
    font-family: 'Aeonik TRIAL', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0;
    color: #ffffff;
    text-align: center;
    max-width: 100%;
}

.hero-description {
    font-family: 'Aeonik TRIAL', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 0;
    text-align: center;
    max-width: 100%;
}

.hero-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
}

.hero-btn-primary {
    background: #007A33;
    border: none;
    color: white;
    padding: 13px 21px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    width: 223px;
    text-decoration: none;
}

.hero-btn-primary:hover {
    font-size: 18px;
    background: #007A33;
}

.hero-btn-primary:visited {
    background: #007A33;
    border: none;
    color: white;
}

.hero-btn-primary:active {
    background: #007A33;;
}

.hero-btn-primary:focus {
    outline: none;
    background: #007A33;
    border: none;
    color: white;
}

/* 功能网格 */
.features-grid-section {
    padding: 160px 0 100px 0;
    background: #fff;
}

.features-grid-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid-header {
    text-align: center;
}

.features-grid-header h2{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}
.features-grid-header p{
    width: 660px;
    margin: 0 auto;
}

.features-grid-wrapper {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 30px auto 0;
}

.features-grid-item {
    text-align: center;
    background: white;
}

.features-grid-icon {
    background: #007A33;
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 6px;
}

.features-grid-icon img {
    width: 32px;
    height: 32px;
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
}

.features-grid-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.features-grid-item p {
    color: #6b7280;
    font-size: 16px;
}

/* 区块标题 */
.section-header {
    text-align: center;
}

.section-badge {
    /* 框架 1000008614 */

    /* 自动布局 */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 23px;
        height: 32px;
    gap: 10px;

    background: #DCFCE7;
    border-radius: 24px;


    display: inline-block;
    background: #DCFCE7;
    color: #007A33;

    font-weight: 500;
    margin-bottom: 16px;
    font-family: 'Aeonik TRIAL';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.pricing .section-header h2 {
    color: #ffffff;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 660px;
    margin: 0 auto;
}

.pricing .section-header p {
    color: #D1D5DB;
}

/* 产品区块 */
.products-section {
    padding: 100px 0;
    background: rgba(222, 255, 236, 0.2);
}

.products-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}
.products-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}


.products-badge {
    display: inline-block;
    background: #DCFCE7;
    color: #007A33;
    padding: 0 23px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
    height: 32px;
}
.products-header p{
    width: 660px;
    margin: 0 auto;
}
/* 产品展示 */
.products-showcase {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    /* 垂直居中对齐 */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
    position: relative;
}

.products-visual {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;

}

.products-mockup {
    position: relative;
    width: 100%;
    height: 500px;
}

.products-device-frame {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.products-device-frame-1 {
    width: 375px;
    height: 356px;
    top: 0;
    left: 0;
    border: 7px solid #007A33;
    border-right: none;
    background: white;
}

.products-device-frame-2 {
    width: 315px;
    height: 273px;
    top: 170px;
    right: 0;
    background: white;
}



/* 产品图片容器 */
.product-images-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 产品图片切换样式 */
.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.product-image.active {
    opacity: 1;
}

.products-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 587px;
}

.products-tabs {
    margin-bottom: 32px;
}
.products-tabs.web{
    display: block;
}
.products-tabs.pad{
    display: none;
}

.products-tab-pills {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    background: #f7f7f7;
    padding: 8px;
    border-radius: 28px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.products-tab-pill {
    background: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.products-tab-pill.active {
    background: #007A33;
    color: white;
}

.products-tab-pill:hover:not(.active) {
    background: #fff;
    color: #007A33;
}

.products-details {
    margin-bottom: 50px;
}

.products-info {
    display: none;
}

.products-info.active {
    display: block;
}

.products-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: #007A33;
    margin-bottom: 16px;
}

.products-info > p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
    -webkit-font-feature-settings: "kern" 1, "liga" 1;
       -moz-font-feature-settings: "kern" 1, "liga" 1;
            font-feature-settings: "kern" 1, "liga" 1;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.01em;
}

.products-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.products-features li {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.products-features li:before {
    content: '•';
    color: #007A33;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.products-btn-secondary {
    background: transparent;
    border: 1px solid #007A33;
    color: #007A33;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 223px;
    height: 46px;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.products-btn-secondary:hover {
    background: rgba(0, 122, 51, 0.1);
}

.products-btn-secondary:visited {
    background: transparent;
    border: 1px solid #007A33;
    color: #007A33;
}

.products-btn-secondary:active {
    background: rgba(0, 122, 51, 0.1);
}

.products-btn-secondary:focus {
    outline: none;
    background: transparent;
    border: 1px solid #007A33;
    color: #007A33;
}

.products-btn-primary {
    background: #007A33;
    border: none;
    color: white;
    padding: 16px 10px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    position: absolute;
    right: 50%;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
    bottom: -80px;
    text-decoration: none;
    width: 223px;
    height: 46px;
    text-align: center;
}

.products-btn-primary:hover {
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(0, 122, 51, 0.3);
    background: #007A33;
}

.products-btn-primary:visited {
    background: #007A33;
    border: none;
    color: white;
}

.products-btn-primary:active {
    background: #007A33;
}

.products-btn-primary:focus {
    outline: none;
    background: #007A33;
    border: none;
    color: white;
}

.btn-primary {
    background: #007A33;
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    margin-left: -100px;
    text-decoration: none;
}

.btn-primary:hover {
    background: #007A33;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 122, 51, 0.3);
}

.btn-primary:visited {
    background: #007A33;
    border: none;
    color: white;
}

.btn-primary:active {
    background: #007A33;
}

.btn-primary:focus {
    outline: none;
    background: #007A33;
    border: none;
    color: white;
}


/* 功能区块 */
.features-section {
    padding: 100px 0;
    background: #ffffff;
}

.features-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-eyebrow {
    margin-bottom: 16px;
}

.features-badge {
    display: inline-block;
    background: #DCFCE7;
    color: #197829;
    border-radius: 24px;
    padding: 0 23px;
    height: 32px;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0px 0px 1px 0px rgba(0, 122, 51, 0.05), 0px 2px 6px 0px rgba(0, 122, 51, 0.05), 0px 10px 16px 0px rgba(0, 122, 51, 0.15);
}

.features-heading {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.features-description {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    max-width: 1224px;
    margin: 0 auto;
}
.features-card {
    display: inline-block;
    background: #F9FAFB;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    width: 392px;
    height: 430px;
    margin: 0 20px 20px 0;
    width: -webkit-calc(100% / 3 - 23px);
    width: calc(100% / 3 - 23px);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}
.features-card:nth-child(3n) {
    margin-right: 0;
}
.features-card img{
    width: -webkit-calc(100% + 5px);
    width: calc(100% + 5px);
    height: 100%;
    object-fit: cover;
    position: absolute;
    margin-left: -5px;
    top: 0;
    left: 0;
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}
.features-card:hover img{
    -webkit-transform: translateZ(0) translateX(5px);
    -moz-transform: translateZ(0) translateX(5px);
    -ms-transform: translateZ(0) translateX(5px);
    -o-transform: translateZ(0) translateX(5px);
    transform: translateZ(0) translateX(5px);
}

/* 响应式布局中的悬停效果 */
@media (min-width: 768px) and (max-width: 1220px) {
    .features-card:hover img {
        -webkit-transform: translateZ(0) scale(1.02) translateX(5px);
        -moz-transform: translateZ(0) scale(1.02) translateX(5px);
        -ms-transform: translateZ(0) scale(1.02) translateX(5px);
        -o-transform: translateZ(0) scale(1.02) translateX(5px);
        transform: translateZ(0) scale(1.02) translateX(5px);
    }
}

@media (max-width: 767px) {
    .features-card:hover img {
        -webkit-transform: translateZ(0) scale(1.02) translateX(5px);
        -moz-transform: translateZ(0) scale(1.02) translateX(5px);
        -ms-transform: translateZ(0) scale(1.02) translateX(5px);
        -o-transform: translateZ(0) scale(1.02) translateX(5px);
        transform: translateZ(0) scale(1.02) translateX(5px);
    }
}

.features-content {
    padding: 20px;
}

.features-image {
    margin-bottom: 24px;
}

.features-image-placeholder {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 比例 (9/16 = 0.5625) */
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}

.mpesa-bg {
    background: -webkit-linear-gradient(315deg, #00d4aa 0%, #00b894 100%);
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
}

.whatsapp-bg {
    background: -webkit-linear-gradient(315deg, #25d366 0%, #128c7e 100%);
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.ai-bg {
    background: -webkit-linear-gradient(315deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mobile-bg {
    background: -webkit-linear-gradient(315deg, #f093fb 0%, #f5576c 100%);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.security-bg {
    background: -webkit-linear-gradient(315deg, #4facfe 0%, #00f2fe 100%);
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.sync-bg {
    background: -webkit-linear-gradient(315deg, #43e97b 0%, #38f9d7 100%);
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.features-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.features-text p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

/* 开始使用区块 */
.get-started-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    text-align: center;
    background: url('../images/getStart2.bd4555c0.png') no-repeat center center;
    background-size: cover;
}

.get-started-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.get-started-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.get-started-header {
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.get-started-eyebrow {
    margin-bottom: 16px;
}

.get-started-badge {
    display: inline-block;
    background: #DCFCE7;
    color: #197829;
    border-radius: 24px;
    padding: 0 23px;
    height: 32px;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0px 0px 1px 0px rgba(0, 122, 51, 0.05), 0px 2px 6px 0px rgba(0, 122, 51, 0.05), 0px 10px 16px 0px rgba(0, 122, 51, 0.15);
}

.get-started-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(315deg, #1f2937 0%, #374151 100%);
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.get-started-description {
    font-size: 18px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.get-started-steps {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.get-started-illustration-steps{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: -70px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}
.get-started-step-item{
    width: 215px;
}
.get-started-step-number{
    font-weight: 800;
    font-size: 60px;
    color: #007A33;
}
.get-started-step-title{
    color: #020817;
    font-size: 20px;
    font-weight: Bold;
}
.get-started-step-desc{
    color: #4B5563;
    font-size: 16px;
    margin-top:10px;
}

.get-started-step-illustration {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
}

.get-started-step-illustration img {
    width: 100%;
    object-fit: contain;
}
.get-started-step-illustration.mobile{
    display: none;
}
.get-started-step-connector {
    position: absolute;
    top: 100px;
    right: -60px;
    width: 80px;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(#10b981), to(#059669));
    background: -webkit-linear-gradient(left, #10b981 0%, #059669 100%);
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    z-index: -1;
}

.get-started-step-item:last-child .get-started-step-connector {
    display: none;
}

.get-started-action {
    position: relative;
    z-index: 1;

}

.get-started-btn-primary {
    background: #007A33;
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    text-decoration: none;
    width: 223px;
    height: 46px;
    text-align: center;
}

.get-started-btn-primary:hover {
    font-size: 18px;
}

.get-started-btn-primary:visited {
    background: #007A33;
    border: none;
    color: white;
}

.get-started-btn-primary:active {
    background: #007A33;
}

.get-started-btn-primary:focus {
    outline: none;
    background: #007A33;
    border: none;
    color: white;
}

.get-started-btn-primary svg {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.get-started-btn-primary:hover svg {
    -webkit-transform: translateX(4px);
        -ms-transform: translateX(4px);
            transform: translateX(4px);
}

/* 确保锚点目标可见 */
#products,
#pricing,
#howitworks {
    scroll-margin-top: 80px;
    /* 添加一些调试样式 */
    position: relative;
}

/* 定价区块 */
.pricing-section {
    background: #007A33;
    text-align: center;
}
.pricing-section .pricing-container{
    padding: 64px 32px 96px;
    height:740px;
}
.pricing-section .pricing-container-foot{
    background: #fff;
    height:230px;
}
.pricing-header {
    max-width: 1280px;
    margin: 0 auto 32px;
    padding: 0 32px;
}

.pricing-eyebrow {
    font-family: 'Aeonik TRIAL', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.33;
    letter-spacing: 0.05em;
    color: #D1D5DB;
    margin-bottom: 8px;
}

.pricing-heading {
    font-family: 'Aeonik TRIAL', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.5;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.pricing-supporting-text {
    font-family: 'Aeonik TRIAL', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #D1D5DB;
    margin: 0 auto;
}

.pricing-content {
    max-width: 1095px;
    margin: 0 auto;
}

.pricing-toggle-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 32px;
}

.pricing-toggle {
    background: #F7F7F7;
    border-radius: 28px;
    padding: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.pricing-toggle-option {
    padding: 8px 24px;
    border-radius: 28px;
    font-family: 'Aeonik TRIAL', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #161718;
    background: #fff;
    border: none;
}

.pricing-toggle-option.active {
    background: #007A33;
    color: #FFFFFF;
}
.pricing-discount{
    color: #007A33;
    font-weight: bolder;
    margin-left: 5px;
}
.pricing-toggle-option.active .pricing-discount{
    color: #fff;
}

/* 自定义货币选择框样式 - 基于Element Plus设计 */
.pricing-currency-select-container {
    text-align: left;
}
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 9px;
}

/* 透明覆盖的原生select */
.pricing-currency-select-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    background: transparent;
    text-align: center;
}

/* 自定义select外观 */
.custom-select-display {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: 60px;
    max-width: 80px;
    height: 32px;
    padding: 0 28px 0 12px;
    background: #FFFFFF;
    border: 1px solid #DCDFE6;
    border-radius: 8px;
    font-family: 'Aeonik TRIAL', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #303133;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    box-sizing: border-box;
    -ms-user-select: none;
        user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    outline: none;
    line-height: 1;
    pointer-events: none; /* 让点击穿透到原生select */
}

.custom-select-display:hover {
    border-color: #C0C4CC;
}

.custom-select-display:focus,
.custom-select-display.focused {
    border-color: #409EFF;
    box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.2);
}

.custom-select-display.active {
    border-color: #409EFF;
}

/* select值显示 */
.custom-select-value {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #303133;
    font-size: 13px;
    line-height: 1;
}

/* 下拉箭头 */
.custom-select-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 16px;
    height: 16px;
    color: #C0C4CC;
    -webkit-transition: color 0.2s ease, -webkit-transform 0.2s ease;
    transition: color 0.2s ease, -webkit-transform 0.2s ease;
    transition: transform 0.2s ease, color 0.2s ease;
    transition: transform 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
}

.custom-select-arrow svg {
    width: 14px;
    height: 14px;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.custom-select-arrow svg path {
    stroke: #C0C4CC;
    -webkit-transition: stroke 0.2s ease;
    transition: stroke 0.2s ease;
}

.custom-select-display:hover .custom-select-arrow svg path {
    stroke: #909399;
}

.custom-select-display.focused .custom-select-arrow svg path,
.custom-select-display.active .custom-select-arrow svg path {
    stroke: #409EFF;
}

.custom-select-display.active .custom-select-arrow svg {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}





/* 旧的pricing-currency-select样式已被自定义select替代 */

.pricing-tiers {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

.pricing-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    overflow: hidden;
    width: -webkit-calc((100% - 30px)/3);
    width: calc((100% - 30px)/3);
    height: auto;
    position: relative;
}

.pricing-discount {
    padding: 5px;
    border-radius: 12px;
    font-family: 'Archivo Black', sans-serif;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    background: #DDB204;
    position: absolute;
    right: 10px;
    top: 10px;
}

.pricing-value-currency {
    font-size: 24px;
    -webkit-transition: opacity 0.15s ease, -webkit-transform 0.15s ease;
    transition: opacity 0.15s ease, -webkit-transform 0.15s ease;
    transition: transform 0.15s ease, opacity 0.15s ease;
    transition: transform 0.15s ease, opacity 0.15s ease, -webkit-transform 0.15s ease;
}

.pricing-underline-amount {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: line-through;
    color: #6B7280;
    margin-bottom: 4px;
}

.pricing-card.pricing-featured {
    border: 2px solid #007A33;
    box-shadow: 0px 15.86px 31.72px 0px rgba(0, 122, 51, 0.1);
}

.pricing-card-header {
    background: #FFFFFF;
    padding: 40px 40px 42px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
}

.pricing-badge-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.pricing-badge {
    margin-bottom: 16px;
    background: #DCFCE7;
    color: #007A33;
    padding: 8px 16px;
    border-radius: 14px;
    font-family: 'Aeonik TRIAL', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.pricing-basic-badge {
    background: #E0E7FF;
    color: #4F46E5;
}

.pricing-standard-badge {
    background: #DCFCE7;
    color: #166534;
}

.pricing-advanced-badge {
    background: rgba(147, 51, 234, 0.102);
    color: #581C87;
}


.pricing-amount {
    display: none;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 4px;
}

.pricing-amount.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 4px;
}

.pricing-value {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: 60px;
    line-height: 1;
    color: #007A33;
    -webkit-transition: opacity 0.15s ease, -webkit-transform 0.15s ease;
    transition: opacity 0.15s ease, -webkit-transform 0.15s ease;
    transition: transform 0.15s ease, opacity 0.15s ease;
    transition: transform 0.15s ease, opacity 0.15s ease, -webkit-transform 0.15s ease;
}

.pricing-period {
    font-family: 'Aeonik TRIAL', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #6B7280;
}

.pricing-description {
    font-family: 'Aeonik TRIAL', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #6B7280;
    margin: 0;
    text-align: center;
}

.pricing-features {
    background: #F9FAFB;
    padding: 0px 40px 24px 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    list-style: none;
    margin: 0;
    min-height: 224px;
    /* margin-bottom: 70px; */
}

.pricing-features .pricing-feature-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
}

.pricing-feature-check {
    width: 24px;
    height: 24px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-top: 2px;
}

.pricing-feature-text {
    font-family: 'Aeonik TRIAL', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #6B7280;

}

.pricing-features .pricing-feature-text {
    text-align: left;
}
.pricing-cta-button {
    /* background: #F9FAFB; */
    border: none;
    border-radius: 0 0 12px 12px;
    color: #FFFFFF;
    cursor: pointer;
    font-family: 'Aeonik TRIAL', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 6px;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
}

/* .pricing-cta-button:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
} */

.pricing-basic-button,
.pricing-standard-button,
.pricing-advanced-button {
    background: #000000;
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    cursor: pointer;
    font-family: 'Aeonik TRIAL', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    padding: 11px 0;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.pricing-basic-button:hover,
.pricing-standard-button:hover,
.pricing-advanced-button:hover {
    background: #333333;
}

.pricing-basic-button:visited,
.pricing-standard-button:visited,
.pricing-advanced-button:visited {
    background: #000000;
    border: none;
    color: #FFFFFF;
}

.pricing-basic-button:active,
.pricing-standard-button:active,
.pricing-advanced-button:active {
    background: #333333;
}

.pricing-basic-button:focus,
.pricing-standard-button:focus,
.pricing-advanced-button:focus {
    outline: none;
    background: #000000;
    border: none;
    color: #FFFFFF;
}

.pricing-card.pricing-featured .pricing-standard-button {
    background: #007A33;
    color: #FFFFFF;
}

.pricing-card.pricing-featured .pricing-standard-button:hover {
    background: #007A33;
}

.pricing-card.pricing-featured .pricing-standard-button:visited {
    background: #007A33;
    color: #FFFFFF;
}

.pricing-card.pricing-featured .pricing-standard-button:active {
    background: #007A33;
}

.pricing-card.pricing-featured .pricing-standard-button:focus {
    outline: none;
    background: #007A33;
    color: #FFFFFF;
}

/* 常见问题区块 */
.faq-section {
    padding: 64px 0 0;
    background: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.faq-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 80px;
    padding: 34px 32px 120px;
    width: 100%;
    max-width: 1280px;
}

.faq-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 672px;
}

.faq-eyebrow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding: 8px 23px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.faq-badge {
    background: #DCFCE7;
    color: #007A33;
    padding: 0 23px;
    height: 32px;
    border-radius: 24px;
    font-family: 'Aeonik TRIAL', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    box-shadow: 0px 0px 1px 0px rgba(0, 122, 51, 0.05), 0px 2px 6px 0px rgba(0, 122, 51, 0.05), 0px 10px 16px 0px rgba(0, 122, 51, 0.15);
}

.faq-heading {
    font-family: 'Aeonik TRIAL', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.5;
    text-align: center;
    color: #111827;
    margin: 0;
    width: 100%;
}

.faq-description {
    font-family: 'Aeonik TRIAL', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #6B7280;
    margin: 0;
    width: 100%;
    height: 28px;
}

.faq-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
                -ms-grid-row-align: stretch;
            align-self: stretch;
    gap:20px;
    width: 100%;
}

.faq-row {
    width: 100%;
    position: relative; /* 为绝对定位的子元素提供参考 */
}

.faq-item {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    position: relative;
}
.faq-top-border {
    width: 100%;
    height: 1px;
    background: #E5E7EB;
}

.faq-item-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; /* 改为stretch，让内容填充整个宽度 */
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
                -ms-grid-row-align: stretch;
            align-self: stretch;
    gap: 8px; /* 减少间距 */
    padding: 24px 0 0;
    width: 100%;
    min-height: 80px; /* 确保最小高度 */
}

.faq-toggle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
                -ms-grid-row-align: stretch;
            align-self: stretch;
    gap: 24px;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.faq-question {
    font-family: 'Aeonik TRIAL', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.556;
    text-align: left;
    color: #000000;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0;
}

.faq-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 28px;
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.faq-panel {
    display: none;
    padding: 20px 20px 20px 20px;
    width: 100%;
    background: white;
    border-top: 1px solid #E5E7EB;
    overflow: hidden;
}

.faq-answer {
    font-family: 'Aeonik TRIAL', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.556;
    text-align: left;
    color: #6B7280;
    width: 100%;
}

.faq-answer p {
    margin: 0;
}

/* 激活状态 */
.faq-item.active .faq-icon {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.faq-item.active .faq-panel {
    display: block;
}
@media (min-width: 768px) and (max-width: 1220px) {
    .hero-background{
        width: 700px;
        top: 600px;
        left: -webkit-calc(50% - 350px);
        left: calc(50% - 350px);
    }
    .products-tabs.web{
        display: none;
    }
    .products-tabs.pad{
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .products-showcase{
        display: block;
        padding: 0 14px;
    }
    .products-device-frame-1{
        width: 560px;
    }
    .products-device-frame-2{
        width: 470px;
    }
    .products-content{
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .products-info h3{
        font-size: 24px;
        text-align: left;
    }
    .products-info p{
        text-align: left;
        -webkit-font-feature-settings: "kern" 1, "liga" 1;
           -moz-font-feature-settings: "kern" 1, "liga" 1;
                font-feature-settings: "kern" 1, "liga" 1;
        text-rendering: optimizeLegibility;
        letter-spacing: -0.01em;
    }
    .products-features{
        text-align: left;
    }
    .products-btn-primary {
        margin-left: 0;
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        bottom: -100px;
        right: 50%;
        -webkit-transform: translateX(50%);
            -ms-transform: translateX(50%);
                transform: translateX(50%);
    }
    .products-visual{
        max-width: 800px;
        margin:0 auto ;
    }
    .features-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        gap: 20px;
        max-width: 100%;
    }
    .features-card {
        width: -webkit-calc(50% - 10px);
        width: calc(50% - 10px);
        /* width: 360px; */
        max-width: 360px;
        height: 430px;
        margin: 0;
        display: block;
    }
    .features-card:nth-child(3n) {
        margin-right: 0;
    }
    .features-card:nth-child(2n) {
        margin-right: 0;
    }
    .features-card img{
        width: -webkit-calc(100% + 5px);
        width: calc(100% + 5px);
        height: 100%;
        object-fit: cover;
    }
    .faq-content{
        gap:0;
    }
    .faq-row {
        width: 100%;
        position: relative;
    }
    /* 移除 .faq-row-last 样式，因为现在所有FAQ项目都在同一行中 */
    .faq-item {
        width: 100%;
        max-width: 100%;
        display: block; /* 移动端使用块级布局 */
    }

    /* 平板端FAQ面板使用正常展开收起 */
    .faq-panel {
        display: none;
        padding: 20px 20px 20px 20px;
        width: 100%;
        background: white;
        border-top: 1px solid #E5E7EB;
        overflow: hidden;
    }

    .faq-item.active .faq-panel {
        display: block;
    }

    .faq-item:nth-child(2n){
        margin-left: 0;
    }
    .pricing-value{
        font-size: 40px;
    }
    .pricing-section .pricing-container-foot{
        height: 320px;
    }

}

@media (max-width: 767px) {
    .hero-btn-primary{
        width: 100%;
    }
    .hero-title{
        font-size: 30px;
    }
    .hero-section{
        height: 750px;
    }
    .hero-content{
        padding-top:50px;
    }
    .hero-background{
        top:580px;
        left: -webkit-calc(50% - 175px);
        left: calc(50% - 175px);
        width: 350px;
        height: 170px;
    }
    .hero-banner{
        width: 350px;
        height: auto;
    }
    .hero-subtitle{
        line-height: 1.5;
    }
    .features-badge{
        padding: 0 23px;
        height: 32px;
    }
    .features-header{
        margin-bottom: 30px;
    }
    .features-grid-header h2{
        font-size: 30px;
    }
    .features-grid-header p{
        width: 100%;
    }

    /* 移动端自定义select优化 */
    .custom-select-display {
        height: 36px;
        padding: 0 32px 0 14px;
        font-size: 14px;
        min-width: 70px;
        max-width: 90px;
        border-width: 1.5px;

        /* 移动端触摸优化 */
        -webkit-tap-highlight-color: transparent;
        -ms-touch-action: manipulation;
            touch-action: manipulation;
    }

    .pricing-currency-select-container {
        text-align: center;
    }

    .custom-select-wrapper {
        margin-bottom: 15px;
    }

    .custom-select-arrow {
        right: 10px;
        width: 18px;
        height: 18px;
    }

    .custom-select-arrow svg {
        width: 16px;
        height: 16px;
    }

    .custom-select-value {
        font-size: 14px;
    }

    .features-grid-section{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .products-badge{
        padding: 0 23px;
        height: 32px;
    }
    .products-header h2{
        font-size: 30px;
    }
    .products-header p{
        width: 100%;
    }
    .products-section{
        padding-top: 50px;
        padding-bottom: 100px;
    }
    .products-tabs.web{
        display: none;
    }
    .products-tabs.pad{
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .products-showcase{
        display: block;
    }
    .products-content{
        text-align: center;
    }
    .products-info h3{
        font-size: 24px;
        text-align: left;
    }
    .products-info p{
        text-align: left;
        -webkit-font-feature-settings: "kern" 1, "liga" 1;
           -moz-font-feature-settings: "kern" 1, "liga" 1;
                font-feature-settings: "kern" 1, "liga" 1;
        text-rendering: optimizeLegibility;
        letter-spacing: -0.01em;
    }
    .products-features{
        text-align: left;
    }
    .products-btn-primary {
        margin-left: 0;
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        bottom: -100px;
        right: 50%;
        -webkit-transform: translateX(50%);
            -ms-transform: translateX(50%);
                transform: translateX(50%);
    }
    .products-device-frame-1{
        width: 280px;
    }
    .products-device-frame-2{
        width: 240px;
    }
    .features-section{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .features-heading{
        font-size: 30px;
    }
    .features-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 20px;
        max-width: 100%;
    }
    .features-card {
        width: 100%;
        max-width: 360px;
        height: 430px;
        margin: 0;
        display: block;
    }
    .features-card:nth-child(3n) {
        margin-right: 0;
    }
    .features-card:nth-child(2n) {
        margin-right: 0;
    }
    .features-card img{
        width: -webkit-calc(100% + 5px);
        width: calc(100% + 5px);
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transform: scale(1.02);
            -ms-transform: scale(1.02);
                transform: scale(1.02); /* 稍微放大图片，避免移动时出现空白 */
        -webkit-transform-origin: left center;
            -ms-transform-origin: left center;
                transform-origin: left center; /* 从左边开始缩放 */
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* 添加平滑过渡效果 */
    }

    .features-image-placeholder {
        padding-bottom: 56.25%; /* 16:9 比例 (9/16 = 0.5625) */
        position: relative;
    }
    .faq-content{
        gap:0;
    }
    .faq-row {
        width: 100%;
        position: relative;
    }
    /* 移除 .faq-row-last 样式，因为现在所有FAQ项目都在同一行中 */
    .faq-item {
        width: 100%;
        max-width: 100%;
    }
    .faq-item:nth-child(2n){
        margin-left: 0;
    }
    .features-grid-wrapper{
        display: block;
    }
    .features-grid-item{
        margin-top:50px;
    }
    .get-started-badge{
        padding: 0 23px;
        height: 32px;
    }
    .get-started-section{
        padding-top: 50px;
        padding-bottom: 50px;
        background: none;
    }
    .get-started-heading{
        font-size: 30px;
    }
    .get-started-steps.web{
        display: none;
    }
    .get-started-illustration-steps{
        display: block;
        margin-top: 10px;
    }
    .get-started-step-illustration.mobile{
        display: block;
        margin-top: 20px;
    }
    .get-started-step-item{
        width: 100%;
    }
    .pricing-eyebrow{
        background: #DCFCE7;
        color: #007A33;
        padding: 3px 23px;
        border-radius: 24px;
        font-family: 'Aeonik TRIAL', sans-serif;
        font-weight: 700;
        font-size: 20px;
        line-height: 0.8;
        text-align: center;
        box-shadow: 0px 0px 1px 0px rgba(0, 122, 51, 0.05), 0px 2px 6px 0px rgba(0, 122, 51, 0.05), 0px 10px 16px 0px rgba(0, 122, 51, 0.15);
    }
    .pricing-header{
        padding:0px;
    }
    .pricing-heading,.pricing-supporting-text{
        color: #333;
    }
    .pricing-supporting-text{
        font-size: 16px;
    }
    .pricing-heading{
        font-size: 30px;
        margin-top: 20px;
    }
    .pricing-tiers{
        display: block;
    }
    .pricing-card{
        width: 100%;
        /* height: 600px; */
        margin-bottom:20px;
        box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    }


    .pricing-section .pricing-container{
        height:auto;
        background: #F9FAFB;
        padding-bottom: 1px;
    }
    .pricing-section .pricing-container-foot{
        display: none;
    }
    .pricing-features{
        margin-bottom: 20px;
    }

    /* 旧的移动端货币选择框样式已被自定义select替代 */


    .faq-heading{
        font-size: 30px;
    }
    .faq-section{
        padding-top: 0;
        padding-bottom: 50px;
    }

}
