/* ============================================
   小程序开发服务页样式 - 微信绿色主题
   ============================================ */

/* ========== 变量定义 ========== */
:root {
    --mp-primary: #07C160;
    --mp-primary-dark: #06AD56;
    --mp-primary-light: #E8F8EE;
    --mp-secondary: #00B0FF;
    --mp-text-dark: #1a1a2e;
    --mp-text-gray: #6b7280;
    --mp-bg-light: #f8f9fc;
    --mp-border: #eef0f6;
}

/* ========== Hero区域 ========== */
.mp-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../images/wx_banner.png') center center / cover no-repeat;
}

.mp-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(7, 193, 96, 0.82) 0%,
        rgba(7, 193, 96, 0.60) 25%,
        rgba(7, 193, 96, 0.32) 55%,
        rgba(7, 193, 96, 0.12) 80%,
        rgba(7, 193, 96, 0.04) 100%
    );
}

.mp-hero-bg::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(
        to right,
        rgba(5, 154, 76, 0.45) 0%,
        rgba(5, 154, 76, 0.22) 50%,
        transparent 100%
    );
}

.mp-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: inherit;
    padding: 60px 0 50px;
}

.mp-hero-left {
    color: #fff;
    text-align: left;
    margin-left: 28%;
    max-width: 560px;
}

.mp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.mp-breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.mp-breadcrumb a:hover {
    color: #fff;
}

.mp-breadcrumb span {
    color: rgba(255,255,255,0.4);
}

.mp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.mp-hero-title {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.mp-title-accent {
    background: linear-gradient(135deg, #fff 0%, #E8F8EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mp-hero-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
}

.mp-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
}

.mp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.mp-btn-primary {
    background: #fff;
    color: var(--mp-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.mp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.mp-btn-outline {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.mp-btn-outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.mp-btn-white {
    background: #fff;
    color: var(--mp-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.mp-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.mp-btn-ghost {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.mp-btn-ghost:hover {
    background: rgba(255,255,255,0.2);
}

/* 手机模型 */
.mp-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mp-phone-mockup {
    perspective: 1000px;
}

.mp-phone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: #1a1a2e;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3), 0 0 0 2px rgba(255,255,255,0.1);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s;
}

.mp-phone-frame:hover {
    transform: rotateY(0) rotateX(0);
}

.mp-phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.mp-phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mp-phone-header {
    background: var(--mp-primary);
    padding: 28px 16px 12px;
}

.mp-phone-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #fff;
    margin-bottom: 8px;
}

.mp-phone-dots {
    display: flex;
    gap: 4px;
}

.mp-phone-dots span {
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
}

.mp-phone-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.mp-phone-banner {
    background: linear-gradient(135deg, #07C160 0%, #06AD56 100%);
    padding: 20px 16px;
    color: #fff;
}

.mp-banner-text {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.mp-banner-sub {
    font-size: 12px;
    opacity: 0.9;
}

.mp-phone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 16px;
}

.mp-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #666;
}

.mp-grid-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.mp-phone-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 16px 16px;
}

.mp-product {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mp-product-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
}

.mp-product-name {
    font-size: 10px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mp-product-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--mp-primary);
}

.mp-phone-tabbar {
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.mp-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    color: #999;
}

.mp-tab.active {
    color: var(--mp-primary);
}

/* ========== 数据指标 ========== */
.mp-metrics {
    background: #fff;
    padding: 60px 0;
    border-bottom: 1px solid var(--mp-border);
}

.mp-metrics-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.mp-metric {
    text-align: center;
    flex: 1;
}

.mp-metric-num {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline;
}

.mp-metric-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--mp-primary);
    display: inline;
}

.mp-metric-label {
    font-size: 14px;
    color: var(--mp-text-gray);
    margin-top: 8px;
}

.mp-metric-divider {
    width: 1px;
    height: 50px;
    background: var(--mp-border);
    margin: 0 20px;
}

/* ========== 通用Section头部 ========== */
.mp-section-head {
    text-align: center;
    margin-bottom: 50px;
}

.mp-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--mp-primary);
    margin-bottom: 14px;
    padding: 4px 16px;
    border: 1px solid rgba(7,193,96,0.2);
    border-radius: 20px;
    background: rgba(7,193,96,0.06);
}

.mp-heading {
    font-size: 36px;
    font-weight: 900;
    color: var(--mp-text-dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.mp-heading span {
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mp-subheading {
    font-size: 15px;
    color: var(--mp-text-gray);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== 平台展示 ========== */
.mp-platforms {
    padding: 90px 0;
    background: var(--mp-bg-light);
}

.mp-platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mp-platform-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--mp-border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.mp-platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.mp-platform-card:hover::before {
    opacity: 1;
}

.mp-platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.mp-platform--wechat::before {
    background: linear-gradient(90deg, #07C160, #06AD56);
}

.mp-platform--alipay::before {
    background: linear-gradient(90deg, #1677FF, #0958D9);
}

.mp-platform--douyin::before {
    background: linear-gradient(90deg, #FE2C55, #FF0050);
}

.mp-platform-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.4s;
}

.mp-platform-icon svg {
    width: 32px;
    height: 32px;
}

.mp-platform-card:hover .mp-platform-icon {
    transform: scale(1.08) rotate(-3deg);
}

.mp-platform--wechat .mp-platform-icon {
    background: linear-gradient(135deg, #07C160, #06AD56);
    color: #fff;
}

.mp-platform--alipay .mp-platform-icon {
    background: linear-gradient(135deg, #1677FF, #0958D9);
    color: #fff;
}

.mp-platform--douyin .mp-platform-icon {
    background: linear-gradient(135deg, #FE2C55, #FF0050);
    color: #fff;
}

.mp-platform--wecom::before {
    background: linear-gradient(90deg, #2B6BE6, #1E52C5);
}

.mp-platform--wecom .mp-platform-icon {
    background: linear-gradient(135deg, #2B6BE6, #1E52C5);
    color: #fff;
}

.mp-platform-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--mp-text-dark);
    margin-bottom: 12px;
}

.mp-platform-card p {
    font-size: 14px;
    color: var(--mp-text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.mp-platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mp-platform-tags span {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 16px;
    background: rgba(7,193,96,0.06);
    color: var(--mp-primary);
    font-weight: 500;
}

/* ========== 小程序类型 ========== */
.mp-types {
    padding: 90px 0;
    background: #fff;
}

.mp-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mp-type-card {
    background: var(--mp-bg-light);
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(7,193,96,0.08);
    transition: all 0.3s;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 8px 10px;
    align-items: start;
}

.mp-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: rgba(7,193,96,0.2);
}

.mp-type-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    transition: transform 0.4s;
    font-size: 18px;
    flex-shrink: 0;
}

.mp-type-icon svg {
    width: 28px;
    height: 28px;
}

.mp-type-card:hover .mp-type-icon {
    transform: scale(1.08) rotate(-3deg);
}

.mp-type--green {
    background: linear-gradient(135deg, #07C160, #06AD56);
    color: #fff;
}

.mp-type--orange {
    background: linear-gradient(135deg, #FF6B35, #E85D26);
    color: #fff;
}

.mp-type--blue {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #fff;
}

.mp-type--yellow {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
}

.mp-type--purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: #fff;
}

.mp-type--pink {
    background: linear-gradient(135deg, #EC4899, #DB2777);
    color: #fff;
}

.mp-type-card h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--mp-text-dark);
    line-height: 1.3;
    grid-column: 2;
}

.mp-type-card p {
    font-size: 12.5px;
    color: var(--mp-text-gray);
    line-height: 1.5;
    margin: 0;
    grid-column: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== 功能模块Bento ========== */
.mp-features {
    padding: 90px 0;
    background: var(--mp-bg-light);
}

.mp-features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.mp-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--mp-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.mp-feature-card:hover::before {
    opacity: 1;
}

.mp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.mp-feature-lg {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(7,193,96,0.04) 0%, rgba(6,173,86,0.04) 100%);
    border-color: rgba(7,193,96,0.12);
}

.mp-feature--green::before {
    background: linear-gradient(90deg, #07C160, #06AD56);
}

.mp-feature--blue::before {
    background: linear-gradient(90deg, #3B82F6, #60A5FA);
}

.mp-feature--orange::before {
    background: linear-gradient(90deg, #F59E0B, #FBBF24);
}

.mp-feature--cyan::before {
    background: linear-gradient(90deg, #06B6D4, #22D3EE);
}

.mp-feature--purple::before {
    background: linear-gradient(90deg, #8B5CF6, #A78BFA);
}

.mp-feature--red::before {
    background: linear-gradient(90deg, #EF4444, #F87171);
}

.mp-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.4s;
}

.mp-feature-icon svg {
    width: 28px;
    height: 28px;
}

.mp-feature-card:hover .mp-feature-icon {
    transform: scale(1.08) rotate(-3deg);
}

.mp-feature--green .mp-feature-icon {
    background: linear-gradient(135deg, #07C160, #06AD56);
    color: #fff;
}

.mp-feature--blue .mp-feature-icon {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #fff;
}

.mp-feature--orange .mp-feature-icon {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
}

.mp-feature--cyan .mp-feature-icon {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    color: #fff;
}

.mp-feature--purple .mp-feature-icon {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: #fff;
}

.mp-feature--red .mp-feature-icon {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: #fff;
}

.mp-feature-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--mp-text-dark);
    margin-bottom: 10px;
}

.mp-feature-card > p {
    font-size: 14px;
    color: var(--mp-text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.mp-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mp-feature-tags span {
    font-size: 12px;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(7,193,96,0.06);
    color: var(--mp-primary);
    font-weight: 500;
}

.mp-feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mp-feature-card ul li {
    font-size: 13px;
    color: var(--mp-text-gray);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}

.mp-feature-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mp-primary);
}

/* ========== 小程序开发报价 ========== */
.mp-price {
    padding: 90px 0;
    background: var(--mp-bg-light);
}

.mp-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.mp-price-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 28px 24px 24px;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.mp-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(7,193,96,0.12);
    border-color: rgba(7,193,96,0.3);
}

.mp-price--featured {
    border-color: rgba(7,193,96,0.5);
    box-shadow: 0 12px 32px rgba(7,193,96,0.10);
}

.mp-price-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #07C160, #06AD56);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(7,193,96,0.3);
}

.mp-price--featured .mp-price-badge {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

.mp-price-ic {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 12px;
}

.mp-price-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--mp-text-dark);
    margin-bottom: 10px;
}

.mp-price-num {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #E5E7EB;
}

.mp-price-currency {
    font-size: 16px;
    font-weight: 700;
    color: #07C160;
}

.mp-price-num > span:nth-child(2) {
    font-size: 32px;
    font-weight: 900;
    color: #07C160;
    letter-spacing: -0.02em;
}

.mp-price-suffix {
    font-size: 13px;
    font-weight: 600;
    color: #9CA3AF;
    margin-left: 4px;
}

.mp-price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 8px;
    flex: 1;
}

.mp-price-list li {
    font-size: 13.5px;
    color: #4B5563;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.mp-price-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #07C160;
    font-weight: 700;
    font-size: 13px;
}

.mp-price-btn {
    display: block;
    text-align: center;
    padding: 12px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, #07C160, #06AD56);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.mp-price-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(7,193,96,0.3);
}

.mp-price--featured .mp-price-btn {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.mp-price-note {
    max-width: 900px;
    margin: 32px auto 0;
    text-align: center;
}

.mp-price-note p {
    font-size: 13.5px;
    color: #6B7280;
    line-height: 1.8;
}

.mp-price-note b {
    color: #374151;
    font-weight: 600;
}

/* ========== 小程序开发工期 ========== */
.mp-duration {
    padding: 90px 0;
    background: linear-gradient(180deg, #F9FFFB 0%, #ffffff 100%);
}

.mp-duration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.mp-duration-card {
    background: #fff;
    border: 1px solid rgba(7, 193, 96, 0.1);
    border-radius: 14px;
    padding: 28px 22px 24px;
    transition: all 0.3s;
    position: relative;
}

.mp-duration-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(7, 193, 96, 0.1);
    border-color: rgba(7, 193, 96, 0.25);
}

.mp-duration--featured {
    border-color: rgba(255, 107, 53, 0.35);
    background: linear-gradient(180deg, #FFF8F4 0%, #fff 60%);
}

.mp-duration-weeks {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 14px;
}

.mp-duration-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--mp-primary);
    line-height: 1;
    letter-spacing: -1px;
}

.mp-duration--featured .mp-duration-num {
    color: #FF6B35;
}

.mp-duration-unit {
    font-size: 16px;
    font-weight: 600;
    color: #9CA3AF;
}

.mp-duration-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(7, 193, 96, 0.08);
    color: var(--mp-primary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.mp-duration--featured .mp-duration-tag {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
}

.mp-duration-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--mp-text-dark);
    margin: 0 0 14px;
}

.mp-duration-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}

.mp-duration-card ul li {
    font-size: 13px;
    color: #6B7280;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.mp-duration-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #07C160;
}

.mp-duration-note {
    margin-top: 40px;
    padding: 22px 26px;
    background: #F0FDF4;
    border: 1px dashed rgba(7, 193, 96, 0.35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.mp-duration-note p {
    font-size: 14px;
    color: #374151;
    margin: 0;
    line-height: 1.7;
    flex: 1;
    min-width: 280px;
}

.mp-duration-note b {
    color: var(--mp-primary);
    font-weight: 700;
}

.mp-duration-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #07C160, #06AD56);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s;
    flex-shrink: 0;
}

.mp-duration-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(7, 193, 96, 0.3);
}

/* ========== 小程序开发FAQ ========== */
.mp-faq {
    padding: 90px 0;
    background: #fff;
}

.mp-faq-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mp-faq-card {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px 26px;
    background: #fff;
    transition: all 0.3s;
}

.mp-faq-card:hover {
    border-color: rgba(7, 193, 96, 0.3);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.04);
}

.mp-faq-q {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.mp-faq-q > span:last-child {
    font-size: 15px;
    font-weight: 700;
    color: var(--mp-text-dark);
    line-height: 1.5;
}

.mp-faq-ic {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #07C160, #06AD56);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.mp-faq-a {
    padding-left: 48px;
}

.mp-faq-a p {
    font-size: 14px;
    line-height: 1.75;
    color: #4B5563;
    margin: 0 0 10px;
}

.mp-faq-a ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: grid;
    gap: 6px;
}

.mp-faq-a ul li {
    font-size: 13.5px;
    color: #4B5563;
    padding-left: 16px;
    position: relative;
    line-height: 1.6;
}

.mp-faq-a ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #07C160;
}

/* ========== 开发流程 ========== */
.mp-process {
    padding: 90px 0;
    background: var(--mp-bg-light);
}

.mp-process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.mp-process-line {
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--mp-primary) 0%, var(--mp-primary-dark) 100%);
    z-index: 0;
}

.mp-process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.mp-process-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--mp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
}

.mp-process-dot span {
    font-size: 12px;
    font-weight: 800;
    color: var(--mp-primary);
}

.mp-process-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 14px;
    border: 1px solid var(--mp-border);
    transition: all 0.3s;
}

.mp-process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: rgba(7,193,96,0.2);
}

.mp-process-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #07C160, #06AD56);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: transform 0.4s;
}

.mp-process-icon svg {
    width: 20px;
    height: 20px;
}

.mp-process-card:hover .mp-process-icon {
    transform: scale(1.08) rotate(-3deg);
}

.mp-process-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--mp-text-dark);
    margin-bottom: 6px;
}

.mp-process-card p {
    font-size: 12px;
    color: var(--mp-text-gray);
    line-height: 1.5;
}

/* ========== 案例展示 ========== */
.mp-cases {
    padding: 90px 0;
    background: #fff;
}

.mp-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mp-case-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--mp-border);
    transition: all 0.3s;
}

.mp-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.mp-case-img {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mp-case-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.mp-case-card:hover .mp-case-img img {
    transform: scale(1.05);
}

.mp-case-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: rgba(7,193,96,0.85);
    padding: 3px 12px;
    border-radius: 12px;
}

.mp-case-body {
    padding: 16px 18px 20px;
}

.mp-case-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--mp-text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.mp-case-body p {
    font-size: 13px;
    color: var(--mp-text-gray);
    line-height: 1.65;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mp-case-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.mp-case-tags span {
    font-size: 11px;
    color: var(--mp-primary);
    background: rgba(7,193,96,0.06);
    padding: 3px 10px;
    border-radius: 10px;
}

.mp-more-wrap {
    text-align: center;
    margin-top: 40px;
}

.mp-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--mp-primary);
    background: rgba(7,193,96,0.06);
    text-decoration: none;
    transition: all 0.3s;
}

.mp-more-btn:hover {
    background: rgba(7,193,96,0.12);
    transform: translateY(-2px);
}

/* ========== 为什么选择 ========== */
.mp-why {
    padding: 90px 0;
    background: var(--mp-bg-light);
}

.mp-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mp-why-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--mp-border);
    transition: all 0.3s;
    position: relative;
}

.mp-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: rgba(7,193,96,0.2);
}

.mp-why-num {
    font-size: 11px;
    font-weight: 800;
    color: var(--mp-primary);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.mp-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #07C160, #06AD56);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: transform 0.4s;
}

.mp-why-icon svg {
    width: 28px;
    height: 28px;
}

.mp-why-card:hover .mp-why-icon {
    transform: scale(1.08) rotate(-3deg);
}

.mp-why-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--mp-text-dark);
    margin-bottom: 10px;
}

.mp-why-card p {
    font-size: 13px;
    color: var(--mp-text-gray);
    line-height: 1.7;
}

/* ========== CTA ========== */
.mp-cta {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-primary-dark) 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.mp-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.mp-cta-inner {
    position: relative;
    z-index: 1;
}

.mp-cta-inner h2 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.mp-cta-inner p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 36px;
}

.mp-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== 行业资讯主题覆盖（复用 main-style.css 基础结构，适配绿色主题） ========== */
.news-section .section-title span {
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.news-section .btn-outline {
    color: var(--mp-primary);
    border-color: var(--mp-primary);
}
.news-section .btn-outline:hover {
    background: var(--mp-primary);
    color: #fff;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .mp-hero-left {
        margin-left: 16%;
        max-width: 480px;
    }

    .mp-hero-title {
        font-size: 36px;
    }

    .mp-platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-types-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .mp-features-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-feature-lg {
        grid-column: span 2;
    }

    .mp-process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .mp-process-line {
        display: none;
    }

    .mp-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mp-price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-duration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-faq-grid {
        grid-template-columns: 1fr;
    }

    .mp-case-body p {
        -webkit-line-clamp: 2;
    }

    .mp-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mp-hero {
        min-height: auto;
    }

    .mp-hero-inner {
        padding: 50px 0 40px;
    }

    .mp-hero-left {
        margin-left: 5%;
        margin-right: 5%;
        max-width: none;
    }

    .mp-hero-title {
        font-size: 30px;
    }

    .mp-hero-desc {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .mp-hero-cta {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .mp-btn {
        justify-content: center;
    }

    .mp-phone-frame {
        width: 240px;
        height: 480px;
    }

    .mp-metrics-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .mp-metric {
        min-width: 40%;
    }

    .mp-metric-divider {
        display: none;
    }

    .mp-metric-num {
        font-size: 36px;
    }

    .mp-heading {
        font-size: 28px;
    }

    .mp-platform-grid {
        grid-template-columns: 1fr;
    }

    .mp-types-grid {
        grid-template-columns: 1fr;
    }

    .mp-features-bento {
        grid-template-columns: 1fr;
    }

    .mp-feature-lg {
        grid-column: span 1;
    }

    .mp-price-grid {
        grid-template-columns: 1fr;
    }

    .mp-duration-grid {
        grid-template-columns: 1fr;
    }

    .mp-faq-grid {
        grid-template-columns: 1fr;
    }

    .mp-process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .mp-why-grid {
        grid-template-columns: 1fr;
    }

    .mp-cta-inner h2 {
        font-size: 28px;
    }

    .mp-cta-inner p {
        font-size: 15px;
    }

    .mp-cta-btns {
        flex-direction: column;
        align-items: center;
    }
}
