/**
 * 大推手官网样式 - 橙色活力配色
 * 品牌定位：门店营销推广平台 - 助你一臂之力
 * 配色方案：橙红渐变系 + 蓝色科技辅助
 */

/* ==================== 基础变量 ==================== */
:root {
    /* 大推手主色 - 橙红活力系 */
    --primary-orange: #FF6B35;
    --primary-orange-light: #FF8E53;
    --primary-orange-dark: #E85A2A;
    --primary-gradient: linear-gradient(135deg, #FF6B35, #FF8E53);

    /* 辅助色 - 蓝色科技感 */
    --accent-blue: #1472FF;
    --accent-blue-light: #4A9EFF;

    /* AI Agent 专用色（保留原配色） */
    --accent-green: #10a37f;

    /* 基础色 */
    --bg-primary: #ffffff;
    --bg-secondary: #f7f7f8;
    --bg-tertiary: #ececf1;
    --bg-card: #ffffff;
    --bg-nav: rgba(255, 255, 255, 0.95);

    /* 文字色 */
    --text-primary: #202223;
    --text-secondary: #6e6e73;
    --text-muted: #999;

    /* 边框色 */
    --border-color: #e5e5e5;
    --border-light: #f0f0f0;

    /* 圆角 */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* 阴影 */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-orange: 0 4px 16px rgba(255, 107, 53, 0.3);

    /* 动画 */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
}

/* ==================== 基础样式 ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

.website-body {
    position: relative;
}

/* ==================== 导航栏 ==================== */
.website-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 0 24px;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.website-nav.scrolled {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 64px;
}

/* Logo */
.nav-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 120px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}



/* 导航链接 */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 15px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
    padding: 8px 0;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.active {
    color: var(--primary-orange);
    font-weight: 600;
}

/* 下拉菜单容器 */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

/* 添加伪元素填充间隙，让鼠标移动更顺畅 */
.nav-item-dropdown::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    z-index: 999;
}

.nav-item-dropdown .nav-link.dropdown-trigger {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 2px);  /* 减少间隙，从8px改为2px */
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 12px 0;  /* 增加上下padding */
    z-index: 1000;
    border: 1px solid var(--border-light);
}

/* 移除hover触发，完全由JavaScript控制 */
/*.nav-item-dropdown:hover .dropdown-menu {
    display: block;
}*/

.nav-item-dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 14px 20px;  /* 增加padding，从12px改为14px */
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
}

.dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--primary-orange);
}

.dropdown-item.active {
    color: var(--primary-orange);
    font-weight: 600;
    background: rgba(255, 107, 53, 0.05);
}

.dropdown-item.clicked {
    background: rgba(255, 107, 53, 0.1);
    transform: scale(0.98);
}

.dropdown-trigger.active {
    color: var(--primary-orange);
    font-weight: 600;
}

/* 下拉菜单显示动画 */
.dropdown-menu {
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* 导航按钮 */
.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-cta {
    background: var(--primary-orange);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.nav-cta:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-1px);
}

.nav-login {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-login:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

/* 移动端菜单 */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
    position: relative;
    padding: 10px;
    border-radius: 8px;
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--bg-tertiary);
}

.toggle-icon {
    position: relative;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    margin: 10px auto;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    left: 0;
    transition: all var(--transition-fast);
}

.toggle-icon::before { top: -7px; }
.toggle-icon::after { bottom: -7px; }

/* 汉堡按钮激活状态 - 变叉号 */
.nav-toggle.active .toggle-icon {
    background: transparent;
}

.nav-toggle.active .toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .toggle-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.nav-mobile {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #ffffff !important;
    padding: 0;
    z-index: 9999 !important;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.2s ease-out, opacity 0.2s ease-out, visibility 0.2s;
}

.nav-mobile.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: block !important;
    transform: translateX(0);
}

.mobile-links {
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
}

.mobile-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-link::after {
    content: '›';
    font-size: 20px;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--primary-orange);
}

.mobile-link:hover::after,
.mobile-link.active::after {
    color: var(--primary-orange);
    transform: translateX(4px);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-orange);
    color: #fff;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.mobile-cta:hover {
    background: var(--primary-orange-dark);
}

.mobile-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: #fff;
    transition: all var(--transition-fast);
}

.mobile-login:hover {
    background: var(--bg-tertiary);
    border-color: var(--text-muted);
}

/* ==================== Hero 区域 ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 80px;
    text-align: center;
    background: var(--bg-primary);
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(16, 163, 127, 0.2);
    padding: 6px 14px;
    border-radius: var(--radius-lg);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--primary-orange);
}

.hero-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.hero-title .highlight {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ==================== 按钮 ==================== */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-normal);
    border-radius: var(--radius-md);
    padding: 14px 28px;
}

.btn-primary {
    background: var(--primary-orange);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

/* ==================== 统计数据 ==================== */
.stats-section {
    padding: 60px 24px;
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-unit {
    font-size: 18px;
    color: var(--text-secondary);
}

.stat-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ==================== 功能区域 ==================== */
.features-section,
.ai-features-section {
    padding: 80px 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-grid,
.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card,
.ai-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.feature-card:hover,
.ai-card:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-icon,
.ai-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-title,
.ai-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-desc,
.ai-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list,
.ai-features-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-list li,
.ai-features-list li {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* 小型功能卡片 */
.function-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.function-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-sm);
}

.function-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.function-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.function-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==================== CTA 区域 ==================== */
.cta-section {
    padding: 80px 24px;
    background: var(--bg-secondary);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* CTA底部栏 */
.cta-bar {
    padding: 60px 24px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    text-align: center;
}

.cta-bar .cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-bar .cta-content {
    margin-bottom: 32px;
}

.cta-bar .cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.cta-bar .cta-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.cta-bar .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-bar .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.cta-bar .cta-btn.primary {
    background: var(--primary-orange);
    color: #fff;
}

.cta-bar .cta-btn.primary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-bar .cta-btn.secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.cta-bar .cta-btn.secondary:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

/* ==================== 页脚 ==================== */
.website-footer {
    padding: 48px 24px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

/* H5模式下footer更紧凑的布局 */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-section {
        padding: 0;
    }

    .footer-title {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer-links li {
        margin-bottom: 6px;
    }

    .footer-links a,
    .footer-links li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    line-height: 2;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-links .contact-icon {
    margin-right: 6px;
    color: var(--text-muted);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.copyright {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==================== 面包屑 ==================== */
.breadcrumb-nav {
    padding: 16px 24px;
    background: var(--bg-primary);
}

.breadcrumb-container {
    max-width: 1100px;
    margin: 0 auto;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item {
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-orange);
}

.breadcrumb-item.active {
    color: var(--text-primary);
}

.breadcrumb-item::after {
    content: '/';
    margin-left: 8px;
    color: var(--text-muted);
}

.breadcrumb-item:last-child::after {
    content: '';
}

/* ==================== 页面内容区 ==================== */
.page-content {
    padding: 40px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 48px;
}

.page-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== 动画 ==================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== 响应式 ==================== */
@media (max-width: 1024px) {
    .hero-section {
        padding: 80px 20px 60px;
    }

    .features-section,
    .ai-features-section,
    .cta-section {
        padding: 60px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .website-footer {
        padding: 32px 16px;
    }
}

@media (max-width: 768px) {
    /* 首页hero区域在移动端的优化 */
    .hero-section {
        min-height: auto !important;
        padding: 100px 16px 40px !important;
    }

    .hero-title {
        font-size: 28px !important;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .stats-section,
    .features-section,
    .ai-features-section {
        padding: 40px 16px !important;
    }

    .features-grid,
    .ai-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card,
    .ai-card {
        padding: 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .website-footer {
        padding: 24px 16px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-section {
        padding: 0;
    }

    .footer-title {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer-links li {
        margin-bottom: 6px;
    }

    .footer-links a,
    .footer-links li {
        font-size: 13px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .page-content {
        padding: 24px 16px;
    }

    /* 隐藏PC端导航按钮 */
    .nav-actions {
        display: none;
    }

    /* 显示汉堡菜单 */
    .nav-toggle {
        display: block;
    }

    /* CTA底部栏优化 */
    .cta-bar {
        padding-bottom: 40px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-cta {
        padding: 8px 16px;
    }

    .hero-section {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 28px;
    }
}
/* ==================== 解决方案展示区（新增） ==================== */
.solutions-section {
    padding: 60px 24px;
    background: linear-gradient(135deg, #f7f7f8, #fff);
}

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

.solutions-header {
    text-align: center;
    margin-bottom: 48px;
}

.solutions-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 100px;
    margin-bottom: 16px;
}

.solutions-badge-text {
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 600;
}

.solutions-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.solutions-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

@media (min-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
        margin: 0 auto;
    }
}

.solution-card {
    padding: 24px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    background: #fff;
    border: 1px solid var(--border-light);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.solution-card.featured {
    background: linear-gradient(135deg, #FFF6E0 0%, #FFFDEA 100%);
    border: 2px solid #FFA81F;
}

.solution-recommend-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #FFA81F;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.solution-type-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.solution-type-badge.orange {
    background: rgba(255, 168, 31, 0.1);
    color: #FFA81F;
}

.solution-type-badge.blue {
    background: rgba(20, 114, 255, 0.1);
    color: #1472FF;
}

.solution-type-badge.green {
    background: rgba(0, 196, 127, 0.1);
    color: #00C47F;
}

.solution-title {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.solution-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.solution-feature-item {
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
}

.solution-feature-item::before {
    content: '✓';
    margin-right: 8px;
    color: #FFA81F;
    font-weight: bold;
}

.solution-cta {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.solution-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}
