/* ===================================
   SaaS 产品落地页样式
   =================================== */

/* 自定义模态框样式 */
.saas-custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.saas-custom-modal.show {
    opacity: 1;
    visibility: visible;
}

.saas-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.saas-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 1;
}

.saas-custom-modal.show .saas-modal-content {
    transform: scale(1);
}

.saas-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 24px 20px;
    border-bottom: 1px solid #e9ecef;
}

.saas-modal-header svg {
    flex-shrink: 0;
    color: #65A3FF;
}

.saas-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.saas-modal-body {
    padding: 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
}

.saas-modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 20px 24px 24px;
    border-top: 1px solid #e9ecef;
}

.saas-modal-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.saas-modal-btn-primary {
    background: linear-gradient(135deg, #65A3FF 0%, #FFC7BF 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(101, 163, 255, 0.3);
}

.saas-modal-btn-primary:hover {
    background: linear-gradient(135deg, #FFC7BF 0%, #65A3FF 100%);
    box-shadow: 0 4px 12px rgba(101, 163, 255, 0.4);
    transform: translateY(-1px);
}

.saas-modal-btn-secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.saas-modal-btn-secondary:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

/* 升级确认对话框特殊样式 */
.saas-upgrade-modal .saas-modal-content {
    max-width: 600px;
}

.upgrade-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.upgrade-from-to {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #E6F0FF 0%, #FFF0ED 100%);
    border-radius: 12px;
}

.upgrade-badge {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.upgrade-badge.personal {
    background: #fff;
    color: #65A3FF;
}

.upgrade-badge.team {
    background: linear-gradient(135deg, #65A3FF 0%, #FFC7BF 100%);
    color: #fff;
    border: none;
}

.upgrade-from-to svg {
    flex-shrink: 0;
    color: #65A3FF;
}

.upgrade-price-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.price-row .label {
    color: #6c757d;
    font-weight: 400;
}

.price-row .value {
    color: #2c3e50;
    font-weight: 600;
}

.price-row.remaining .label,
.price-row.remaining .value {
    font-size: 14px;
}

.price-row.total {
    margin-top: 4px;
}

.price-row.total .label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.price-row.total .value {
    font-size: 24px;
}

.price-row .value.highlight {
    color: #65A3FF;
}

.price-divider {
    height: 1px;
    background: #dee2e6;
    margin: 8px 0;
}

.upgrade-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    font-size: 13px;
    color: #856404;
}

.upgrade-notice svg {
    flex-shrink: 0;
    color: #ffc107;
}

.upgrade-notice span {
    flex: 1;
}

/* 全局样式 */
.saas-landing-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.saas-container {
    max-width: 1540px;
    margin: 0 auto;
}

/* Hero 区域 - 左文右图布局 */
.saas-hero-section {
    padding: 100px 0;
    background: #fff;
    min-height: auto;
}

.saas-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.saas-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.saas-hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.saas-hero-image {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.saas-hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #65A3FF 0%, #FFC7BF 100%);
    color: #fff;
    opacity: 0.3;
}

.saas-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #2d3748;
    animation: fadeInUp 1s ease;
}

.saas-hero-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #718096;
    animation: fadeInUp 1s ease 0.2s both;
}

.saas-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.saas-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.saas-btn-primary {
    background: linear-gradient(135deg, #65A3FF 0%, #FFC7BF 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(101, 163, 255, 0.3);
    border: none;
}

.saas-btn-primary:hover {
    background: linear-gradient(135deg, #FFC7BF 0%, #65A3FF 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(101, 163, 255, 0.4);
    color: #fff;
}

.saas-btn-secondary {
    background: transparent;
    color: #65A3FF;
    border: 2px solid #65A3FF;
}

.saas-btn-secondary:hover {
    background: linear-gradient(135deg, #FFC7BF 0%, #65A3FF 100%);
    border: none;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(101, 163, 255, 0.4);
}

.saas-btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* 功能区域 */
.saas-features-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.saas-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #2d3748;
}

.saas-section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #718096;
    margin-bottom: 60px;
}

.saas-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.saas-feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.saas-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.saas-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #65A3FF 0%, #FFC7BF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.saas-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
}

.saas-feature-desc {
    font-size: 1rem;
    color: #718096;
    line-height: 1.6;
}

/* 核心功能模块 - 视频区域 */
.saas-feature-video-wrapper {
    margin: 0 0 40px;
    display: flex;
    justify-content: center;
}

.saas-feature-video-container {
    width: 100%;
    max-width: 1540px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.saas-feature-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 809px;
    object-fit: cover;
}

/* 隐藏视频控制条 */
.saas-feature-video::-webkit-media-controls {
    display: none !important;
}

.saas-feature-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.saas-feature-video::-webkit-media-controls-panel {
    display: none !important;
}

.saas-feature-video::-webkit-media-controls-play-button {
    display: none !important;
}

.saas-feature-video::-webkit-media-controls-timeline {
    display: none !important;
}

.saas-feature-video::-webkit-media-controls-current-time-display {
    display: none !important;
}

.saas-feature-video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

.saas-feature-video::-webkit-media-controls-mute-button {
    display: none !important;
}

.saas-feature-video::-webkit-media-controls-volume-slider {
    display: none !important;
}

.saas-feature-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

/* 确保视频无控制条显示 */
.saas-feature-video[controls] {
    /* 如果浏览器仍然显示控制条，可以通过JavaScript移除controls属性 */
}

/* 核心功能模块 - Tab 标签 */
.saas-feature-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 0 20px;
}

.saas-feature-tab {
    padding: 15px 30px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
    white-space: nowrap;
}

.saas-feature-tab:hover {
    border-color: #e2e8f0;
    color: #65A3FF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(101, 163, 255, 0.2);
}

.saas-feature-tab.active {
    background: linear-gradient(135deg, #65A3FF 0%, #FFC7BF 100%);
    border: none;
    color: #fff;
    box-shadow: 0 5px 20px rgba(101, 163, 255, 0.4);
}

.saas-feature-tab.active:hover {
    background: linear-gradient(135deg, #FFC7BF 0%, #65A3FF 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(101, 163, 255, 0.4);
}

.saas-feature-tab .tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.saas-feature-tab .tab-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.saas-feature-tab .tab-label {
    font-size: 1rem;
}

/* 核心功能模块 - Tab 内容 */
.saas-feature-content {
    margin: 40px 0;
}

.saas-feature-tab-content {
    display: none;
    text-align: center;
    padding: 0 20px;
}

.saas-feature-tab-content.active {
    display: block;
}

.saas-feature-description {
    margin-bottom: 15px;
}

.feature-content-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
}

.feature-content-text {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.saas-feature-explore-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #65A3FF 0%, #FFC7BF 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(101, 163, 255, 0.3);
    border: none;
}

.saas-feature-explore-btn:hover {
    background: linear-gradient(135deg, #FFC7BF 0%, #65A3FF 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(101, 163, 255, 0.4);
    color: #fff;
}

/* 价格区域 */
.saas-pricing-section {
    padding: 100px 0;
    background: #fff;
}

/* 会员类型切换 */
.saas-member-type-switch {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.member-type-btn {
    padding: 15px 40px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.member-type-btn:hover {
    border-color: #65A3FF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(101, 163, 255, 0.2);
}

.member-type-btn.active {
    background: linear-gradient(135deg, #65A3FF 0%, #FFC7BF 100%);
    color: #fff;
    border-color: #65A3FF;
    box-shadow: 0 5px 20px rgba(101, 163, 255, 0.4);
}

.member-type-icon {
    font-size: 1.3rem;
}

.saas-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* 团队会员价格区域 - 单卡片居中 */
#team-pricing.saas-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.saas-pricing-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.saas-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.saas-pricing-featured {
    border-color: #65A3FF;
    box-shadow: 0 10px 30px rgba(101, 163, 255, 0.2);
    transform: scale(1.05);
}

.saas-pricing-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.saas-pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #65A3FF 0%, #FFC7BF 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.saas-pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.saas-pricing-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2d3748;
}

.saas-pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}

.saas-price-currency {
    font-size: 1.5rem;
    color: #718096;
    margin-top: 10px;
}

.saas-price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #65A3FF;
    margin: 0 5px;
}

.saas-price-period {
    font-size: 1.2rem;
    color: #718096;
    margin-top: 20px;
}

.saas-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.saas-pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a5568;
    font-size: 1rem;
}

/* 团队会员功能列表居中 */
.saas-pricing-team .saas-pricing-features {
    text-align: left;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.saas-pricing-team .saas-pricing-features li {
    justify-content: flex-start;
}

.saas-pricing-features li svg {
    color: #48bb78;
    flex-shrink: 0;
}

.saas-pricing-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #65A3FF 0%, #FFC7BF 100%);
    color: #fff !important;
    text-align: center;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(101, 163, 255, 0.3);
}

.saas-pricing-btn:hover {
    background: linear-gradient(135deg, #FFC7BF 0%, #65A3FF 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(101, 163, 255, 0.4);
    color: #fff !important;
}

.saas-pricing-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* 会员类型切换 */
.saas-member-type-switch {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.member-type-btn {
    padding: 12px 30px;
    border: 2px solid #e2e8f0;
    background: #fff;
    color: #718096;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-type-btn:hover {
    border-color: #e2e8f0;
    color: #65A3FF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(101, 163, 255, 0.2);
}

.member-type-btn.active {
    background: linear-gradient(135deg, #65A3FF 0%, #FFC7BF 100%);
    border: none;
    color: #fff;
    box-shadow: 0 5px 20px rgba(101, 163, 255, 0.4);
}

.member-type-btn.active:hover {
    background: linear-gradient(135deg, #FFC7BF 0%, #65A3FF 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(101, 163, 255, 0.4);
}

.member-type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.member-type-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* 团队版样式 */
.saas-pricing-team {
    border-color: #65A3FF;
    position: relative;
}

.saas-pricing-team .saas-pricing-header {
    text-align: center;
}

.team-seats-info {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-price-info {
    margin-top: 15px;
    text-align: center;
    width: 100%;
}

.team-price-label {
    display: block;
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 10px;
}

.team-total-price {
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.team-seats-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 20px auto;
    width: fit-content;
}

.team-seats-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3748;
}

.seats-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.seats-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #65A3FF;
    background: #fff;
    color: #65A3FF;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.seats-btn:hover {
    background: #65A3FF;
    color: #fff;
    transform: scale(1.1);
}

.seats-btn:active {
    transform: scale(0.95);
}

#team-seats-input {
    width: 80px;
    height: 40px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
}

.seats-hint {
    text-align: center;
    color: #718096;
    font-size: 0.85rem;
    margin-top: 10px;
    margin-bottom: 0;
}

/* FAQ 区域 */
.saas-faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.saas-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.saas-faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.saas-faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
}

.saas-faq-answer {
    font-size: 1rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* CTA 区域 */
.saas-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #65A3FF 0%, #FFC7BF 100%);
    color: #fff;
    text-align: center;
}

.saas-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.saas-cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .saas-hero-section {
        padding: 60px 0;
    }
    
    .saas-hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .saas-hero-image-wrapper {
        height: 300px;
        order: -1;
    }
    
    .saas-hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .saas-hero-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .saas-hero-buttons {
        justify-content: center;
    }
    
    .saas-section-title {
        font-size: 1.8rem;
    }
    
    .saas-features-grid,
    .saas-pricing-grid,
    .saas-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .saas-pricing-featured {
        transform: scale(1);
    }
    
    .saas-pricing-featured:hover {
        transform: scale(1) translateY(-5px);
    }
    
    .saas-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .saas-btn {
        width: 100%;
    }
    
    .saas-price-amount {
        font-size: 2.5rem;
    }
    
    /* 核心功能模块响应式 */
    .saas-feature-video-container {
        max-width: 100%;
        border-radius: 15px;
    }
    
    .saas-feature-video {
        max-height: 400px;
    }
    
    .saas-feature-tabs {
        gap: 10px;
        padding: 0 10px;
    }
    
    .saas-feature-tab {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .saas-feature-tab .tab-icon {
        font-size: 1rem;
    }
    
    .feature-content-title {
        font-size: 1.5rem;
    }
    
    .feature-content-text {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .saas-feature-tab-content {
        padding: 15px;
    }
    
    .saas-feature-explore-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* 移除默认的 WordPress 内容区域样式 */
.saas-landing-page .entry-content,
.saas-landing-page .entry-header,
.saas-landing-page .entry-meta,
.saas-landing-page .post-meta {
    display: none !important;
}

/* 隐藏侧边栏 */
body.page-template-saas-landing-page .sidebar,
body.page-template-saas-landing-page .widget-area {
    display: none !important;
}

/* 全宽布局 */
body.page-template-saas-landing-page .site-content,
body.page-template-saas-landing-page .content-area {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.page-template-saas-landing-page .site-main {
    margin: 0 !important;
    padding: 0 !important;
}

