Files
yuyuecha-guanwang/index.html.broken.20260311
T

1468 lines
39 KiB
Plaintext
Executable File

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>愉悦查 - 让信任无处不在,让合作没有距离 | AI 驱动的商业信任科技平台</title>
<meta name="description" content="愉悦查是 AI 驱动的商业信任科技平台,提供个人大数据报告、婚恋风险报告、入职背调报告等 6 大标准报告,支持 AI 智能定制报告。200+ 数据接口,秒级响应,让信任无处不在。">
<meta name="keywords" content="愉悦查,背调报告,信用查询,风险评估,AI 定制报告,婚恋风险,入职背调,小微企业报告">
<!-- 预加载字体 -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap" rel="stylesheet">
<style>
/* ===== CSS Variables - 品牌色定义 ===== */
:root {
/* 品牌主色 - 橙色系 (来自蓝湖设计稿) */
--primary-orange: #FF6A19;
--primary-orange-light: #FC6E18;
--primary-orange-dark: #E64E10;
--primary-gradient: linear-gradient(135deg, #FF6A19 0%, #FC6E18 100%);
--primary-orange-soft: #FFDECC;
/* 辅助色 */
--bg-light: #FFFFFF;
--bg-gray: #F5F7FA;
--bg-gray-light: #E4E7E0;
/* 文字色 */
--text-primary: #1A1A1A;
--text-secondary: #666666;
--text-light: #999999;
/* 功能色 */
--success: #07C160;
--warning: #FF9500;
--error: #FF3B30;
/* 间距 */
--spacing-xs: 8px;
--spacing-sm: 16px;
--spacing-md: 24px;
--spacing-lg: 48px;
--spacing-xl: 80px;
/* 圆角 */
--radius-sm: 4px;
--radius-md: 8px;
--radius-lg: 16px;
--radius-xl: 24px;
/* 阴影 */
--shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
--shadow-md: 0 4px 16px rgba(0,0,0,0.12);
--shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
/* 过渡 */
--transition: all 0.3s ease;
}
/* ===== Reset & Base ===== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
font-size: 16px;
line-height: 1.6;
color: var(--text-primary);
background-color: var(--bg-light);
}
a {
text-decoration: none;
color: inherit;
}
ul {
list-style: none;
}
img {
max-width: 100%;
height: auto;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 var(--spacing-md);
}
padding: 10px 20px;
font-size: 14px;
}
.btn {
display: inline-block;
padding: 14px 32px;
font-size: 16px;
font-weight: 500;
border-radius: var(--radius-md);
cursor: pointer;
transition: var(--transition);
border: none;
text-align: center;
}
.btn-primary {
background: var(--primary-gradient);
color: white;
box-shadow: 0 4px 12px rgba(236, 77, 9, 0.3);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(236, 77, 9, 0.4);
}
/* Mobile Menu */
.menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 5px;
}
.menu-toggle span {
width: 25px;
height: 3px;
background: var(--primary-orange);
border-radius: 2px;
transition: var(--transition);
}
/* ===== Hero Section ===== */
.hero {
padding-top: 160px;
padding-bottom: 100px;
background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 50%, #F5F7FA 100%);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 80%;
height: 200%;
background: radial-gradient(circle, rgba(236, 77, 9, 0.05) 0%, transparent 70%);
animation: float 20s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-20px) rotate(5deg); }
}
.hero-content {
text-align: center;
max-width: 900px;
margin: 0 auto;
position: relative;
z-index: 1;
}
.hero-badge {
display: inline-block;
padding: 8px 16px;
background: linear-gradient(135deg, rgba(255, 106, 25, 0.1), rgba(252, 110, 24, 0.15));
color: var(--primary-orange);
font-size: 14px;
font-weight: 600;
border-radius: 20px;
margin-bottom: var(--spacing-md);
border: 1px solid rgba(255, 106, 25, 0.2);
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.02); }
}
.hero h1 {
font-size: 56px;
font-weight: 900;
line-height: 1.2;
margin-bottom: var(--spacing-sm);
background: linear-gradient(135deg, #FF6A19 0%, #FC6E18 50%, #FF8A5C 100%);
background-size: 200% auto;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift {
0%, 100% { background-position: 0% center; }
50% { background-position: 100% center; }
}
.hero p {
font-size: 20px;
color: var(--text-secondary);
margin-bottom: var(--spacing-lg);
}
.hero-stats {
display: flex;
justify-content: center;
gap: var(--spacing-lg);
margin-top: var(--spacing-lg);
flex-wrap: wrap;
}
.stat-item {
text-align: center;
}
.stat-number {
font-size: 36px;
font-weight: 700;
background: var(--primary-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.stat-label {
font-size: 14px;
color: var(--text-light);
margin-top: 4px;
}
.hero-buttons {
display: flex;
justify-content: center;
gap: var(--spacing-sm);
margin-top: var(--spacing-lg);
flex-wrap: wrap;
}
/* ===== Trust Bar ===== */
.trust-bar {
padding: var(--spacing-lg) 0;
background: var(--bg-gray);
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}
.trust-bar p {
text-align: center;
font-size: 14px;
color: var(--text-light);
margin-bottom: var(--spacing-sm);
}
.trust-logos {
display: flex;
justify-content: center;
align-items: center;
gap: var(--spacing-lg);
flex-wrap: wrap;
opacity: 0.6;
}
.trust-logo {
height: 40px;
filter: grayscale(100%);
transition: var(--transition);
}
.trust-logo:hover {
filter: grayscale(0%);
}
/* ===== Features Section ===== */
.features {
background: var(--bg-light);
}
.features-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--spacing-md);
}
.feature-card {
text-align: center;
padding: var(--spacing-lg) var(--spacing-md);
border-radius: var(--radius-lg);
transition: var(--transition);
}
.feature-card:hover {
background: var(--bg-gray);
transform: translateY(-4px);
}
.feature-icon {
width: 64px;
height: 64px;
margin: 0 auto var(--spacing-sm);
background: var(--primary-gradient);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
}
.feature-title {
font-size: 18px;
font-weight: 600;
margin-bottom: var(--spacing-xs);
}
.feature-desc {
font-size: 14px;
color: var(--text-secondary);
}
/* ===== Products Section ===== */
.products {
background: var(--bg-gray);
}
.products-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--spacing-md);
margin-bottom: var(--spacing-lg);
}
.product-card {
background: white;
border-radius: var(--radius-lg);
padding: var(--spacing-lg);
box-shadow: var(--shadow-sm);
transition: var(--transition);
position: relative;
overflow: hidden;
}
.product-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: var(--primary-gradient);
}
.product-card:hover {
transform: translateY(-12px);
box-shadow: var(--shadow-lg);
}
.product-card:hover .product-icon {
transform: scale(1.1) rotate(5deg);
}
.product-icon {
width: 80px;
height: 80px;
border-radius: 50%;
background: var(--primary-gradient);
display: flex;
align-items: center;
justify-content: center;
font-size: 36px;
margin-bottom: var(--spacing-sm);
box-shadow: 0 4px 16px rgba(255, 106, 25, 0.3);
transition: var(--transition);
}
.product-name {
font-size: 20px;
font-weight: 600;
margin-bottom: var(--spacing-xs);
}
.product-price {
font-size: 28px;
font-weight: 700;
color: var(--primary-orange);
margin-bottom: var(--spacing-sm);
}
.product-price span {
font-size: 14px;
font-weight: 400;
color: var(--text-light);
}
.product-features {
margin: var(--spacing-sm) 0;
padding: var(--spacing-sm) 0;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}
.product-features li {
font-size: 14px;
color: var(--text-secondary);
padding: 4px 0;
display: flex;
align-items: center;
gap: 8px;
}
.product-features li::before {
content: '✓';
color: var(--success);
font-weight: 700;
}
/* AI Custom Product */
.product-ai {
grid-column: 1 / -1;
background: var(--primary-gradient);
color: white;
padding: var(--spacing-xl);
border-radius: var(--radius-xl);
text-align: center;
position: relative;
overflow: hidden;
}
.product-ai::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 50%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
animation: float 15s ease-in-out infinite reverse;
}
.product-ai h3 {
font-size: 32px;
margin-bottom: var(--spacing-sm);
position: relative;
}
.product-ai p {
font-size: 18px;
opacity: 0.95;
margin-bottom: var(--spacing-md);
position: relative;
}
.product-ai .btn {
background: white;
color: var(--primary-orange);
position: relative;
}
/* ===== Technology Section ===== */
.technology {
background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
color: white;
}
.technology .section-title,
.technology .section-subtitle {
color: white;
}
.tech-diagram {
max-width: 1000px;
margin: var(--spacing-lg) auto;
background: rgba(255,255,255,0.05);
border-radius: var(--radius-xl);
padding: var(--spacing-xl);
backdrop-filter: blur(10px);
}
.tech-flow {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: var(--spacing-md);
}
.tech-step {
flex: 1;
min-width: 150px;
text-align: center;
padding: var(--spacing-md);
background: rgba(236, 77, 9, 0.1);
border-radius: var(--radius-md);
border: 1px solid rgba(236, 77, 9, 0.3);
}
.tech-step-icon {
font-size: 36px;
margin-bottom: var(--spacing-xs);
}
.tech-step-title {
font-size: 16px;
font-weight: 600;
margin-bottom: 4px;
}
.tech-step-desc {
font-size: 13px;
opacity: 0.8;
}
.tech-arrow {
font-size: 24px;
color: var(--primary-orange);
}
.tech-apis {
text-align: center;
margin-top: var(--spacing-lg);
padding: var(--spacing-md);
background: rgba(255,255,255,0.05);
border-radius: var(--radius-md);
}
.tech-apis p {
font-size: 14px;
opacity: 0.8;
margin-bottom: var(--spacing-sm);
}
.api-tags {
display: flex;
justify-content: center;
gap: var(--spacing-xs);
flex-wrap: wrap;
}
.api-tag {
padding: 6px 12px;
background: rgba(236, 77, 9, 0.2);
border-radius: 20px;
font-size: 13px;
border: 1px solid rgba(236, 77, 9, 0.3);
}
/* ===== Partnership Section ===== */
.partnership {
background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
}
.pricing-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--spacing-md);
max-width: 1000px;
margin: 0 auto var(--spacing-lg);
}
.pricing-card {
background: white;
border-radius: var(--radius-lg);
padding: var(--spacing-lg);
text-align: center;
box-shadow: var(--shadow-sm);
transition: var(--transition);
border: 2px solid transparent;
}
.pricing-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
border-color: var(--primary-orange);
position: relative;
transform: scale(1.08);
box-shadow: var(--shadow-lg);
z-index: 1;
}
.pricing-card.featured:hover {
transform: scale(1.08) translateY(-8px);
}
.pricing-card.featured::before {
content: '🔥 热门推荐';
position: absolute;
top: -14px;
left: 50%;
transform: translateX(-50%);
background: var(--primary-gradient);
color: white;
padding: 6px 20px;
border-radius: 12px;
font-size: 13px;
font-weight: 600;
box-shadow: 0 4px 12px rgba(255, 106, 25, 0.4);
}
.pricing-icon {
font-size: 48px;
margin-bottom: var(--spacing-sm);
}
.pricing-name {
font-size: 20px;
font-weight: 600;
margin-bottom: var(--spacing-xs);
}
.pricing-price {
font-size: 36px;
font-weight: 700;
color: var(--primary-orange);
margin-bottom: var(--spacing-sm);
}
.pricing-price span {
font-size: 14px;
font-weight: 400;
color: var(--text-light);
}
.pricing-features {
margin: var(--spacing-md) 0;
text-align: left;
}
.pricing-features li {
font-size: 14px;
color: var(--text-secondary);
padding: 8px 0;
display: flex;
align-items: center;
gap: 8px;
}
.pricing-features li::before {
content: '✓';
color: var(--success);
font-weight: 700;
}
/* Calculator - Advanced Profit Calculator */
.profit-calculator {
max-width: 1000px;
margin: var(--spacing-lg) auto;
background: white;
padding: var(--spacing-lg);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
}
.calculator-title {
text-align: center;
font-size: 24px;
font-weight: 700;
margin-bottom: var(--spacing-md);
color: var(--text-primary);
}
.level-tabs {
display: flex;
gap: 12px;
margin-bottom: 24px;
}
.tab-btn {
flex: 1;
padding: 16px 20px;
border: 2px solid #e0e0e0;
border-radius: var(--radius-md);
background: #fff;
cursor: pointer;
font-size: 16px;
font-weight: 600;
transition: var(--transition);
display: flex;
justify-content: space-between;
align-items: center;
}
.tab-btn:hover {
border-color: var(--primary-orange);
}
.tab-btn.active {
border-color: var(--primary-orange);
background: var(--primary-gradient);
color: #fff;
}
.tab-btn .price {
font-size: 13px;
font-weight: 400;
opacity: 0.9;
}
.calculator-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
}
.input-section, .profit-section {
background: var(--bg-gray);
padding: 20px;
border-radius: var(--radius-md);
}
.input-section h4, .profit-section h4 {
font-size: 16px;
margin-bottom: 16px;
color: var(--text-primary);
}
.input-group {
margin-bottom: 16px;
}
.input-group label {
display: block;
margin-bottom: 6px;
font-size: 13px;
color: var(--text-secondary);
}
.input-group input {
width: 100%;
padding: 10px 12px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 15px;
transition: var(--transition);
}
.input-group input:focus {
outline: none;
border-color: var(--primary-orange);
}
.profit-card {
background: #fff;
padding: 14px;
border-radius: 8px;
margin-bottom: 10px;
}
.profit-card .label {
font-size: 13px;
color: var(--text-secondary);
margin-bottom: 4px;
}
.profit-card .value {
font-size: 24px;
font-weight: 700;
color: var(--primary-orange);
}
.profit-card .sub {
font-size: 11px;
color: #999;
margin-top: 4px;
}
.profit-card.highlight {
background: #FFF3E0;
border: 2px solid var(--primary-orange);
}
.profit-card.total {
background: var(--primary-gradient);
color: #fff;
}
.profit-card.total .label,
.profit-card.total .value,
.profit-card.total .sub {
color: #fff;
}
.roi-card {
background: #FFF3CD;
border: 2px solid #FFC107;
padding: 14px;
border-radius: 8px;
margin-top: 12px;
}
.roi-card .label {
font-size: 13px;
color: #856404;
}
.roi-card .value {
font-size: 20px;
font-weight: 700;
color: #856404;
}
.roi-card .sub {
font-size: 11px;
color: #856404;
opacity: 0.8;
margin-top: 4px;
}
.product-detail {
grid-column: 1 / -1;
background: #fff;
padding: 20px;
border-radius: var(--radius-md);
border: 1px solid #e0e0e0;
margin-top: 12px;
}
.product-detail h4 {
font-size: 16px;
margin-bottom: 12px;
color: var(--text-primary);
}
.product-detail table {
width: 100%;
border-collapse: collapse;
font-size: 13px;
}
.product-detail th,
.product-detail td {
padding: 10px;
text-align: left;
border-bottom: 1px solid #e0e0e0;
}
.product-detail th {
background: var(--bg-gray);
font-weight: 600;
color: var(--text-primary);
}
.product-detail tr:hover {
background: var(--bg-gray-light);
}
@media (max-width: 768px) {
.calculator-grid {
grid-template-columns: 1fr;
}
.level-tabs {
flex-direction: column;
}
}
/* ===== FAQ Section ===== */
.faq {
background: var(--bg-light);
}
.faq-list {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
border-bottom: 1px solid #eee;
padding: var(--spacing-md) 0;
transition: var(--transition);
}
.faq-item:hover {
background: rgba(255, 106, 25, 0.02);
padding-left: var(--spacing-sm);
padding-right: var(--spacing-sm);
margin-left: calc(-1 * var(--spacing-sm));
margin-right: calc(-1 * var(--spacing-sm));
border-radius: var(--radius-md);
}
}
.faq-question {
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
padding: var(--spacing-sm) 0;
font-size: 18px;
font-weight: 500;
transition: var(--transition);
}
.faq-question:hover {
color: var(--primary-orange);
}
.faq-icon {
font-size: 24px;
color: var(--primary-orange);
transition: var(--transition);
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: rgba(255, 106, 25, 0.1);
}
.faq-item.active .faq-icon {
background: var(--primary-gradient);
color: white;
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
color: var(--text-secondary);
line-height: 1.8;
}
.faq-item.active .faq-icon {
transform: rotate(45deg);
}
.faq-item.active .faq-answer {
max-height: 500px;
margin-top: var(--spacing-sm);
}
/* ===== CTA Section ===== */
.cta {
background: linear-gradient(135deg, #FF6A19 0%, #FC6E18 50%, #FF8A5C 100%);
background-size: 200% 200%;
animation: gradientShift 5s ease infinite;
color: white;
text-align: center;
padding: var(--spacing-xl) 0;
position: relative;
overflow: hidden;
}
.cta::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
animation: rotate 20s linear infinite;
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.cta h2 {
font-size: 36px;
margin-bottom: var(--spacing-sm);
}
.cta p {
font-size: 18px;
opacity: 0.95;
margin-bottom: var(--spacing-lg);
}
.cta-buttons {
display: flex;
justify-content: center;
gap: var(--spacing-sm);
flex-wrap: wrap;
position: relative;
z-index: 1;
}
.cta .btn {
background: white;
color: var(--primary-orange);
}
.cta .btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.cta .btn-outline {
background: transparent;
border-color: rgba(255,255,255,0.5);
color: white;
}
.cta .btn-outline:hover {
background: white;
color: var(--primary-orange);
}
.cta .btn-outline:hover {
background: white;
color: var(--primary-orange);
}
/* ===== Footer ===== */
.footer {
background: #1A1A1A;
color: white;
padding: var(--spacing-xl) 0 var(--spacing-lg);
}
.footer-grid {
display: grid;
grid-template-columns: 2fr repeat(3, 1fr);
gap: var(--spacing-lg);
margin-bottom: var(--spacing-lg);
}
.footer-brand h3 {
font-size: 24px;
margin-bottom: var(--spacing-sm);
color: var(--primary-orange);
}
.footer-brand p {
font-size: 14px;
opacity: 0.8;
line-height: 1.8;
}
.footer-title {
font-size: 16px;
font-weight: 600;
margin-bottom: var(--spacing-sm);
}
.footer-links li {
margin-bottom: var(--spacing-xs);
}
.footer-links a {
font-size: 14px;
opacity: 0.8;
transition: var(--transition);
}
.footer-links a:hover {
opacity: 1;
color: var(--primary-orange);
}
.footer-bottom {
padding-top: var(--spacing-lg);
border-top: 1px solid rgba(255,255,255,0.1);
text-align: center;
font-size: 14px;
opacity: 0.6;
}
.footer-icp {
margin-top: var(--spacing-sm);
}
/* ===== Animations ===== */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in-up {
animation: fadeInUp 0.6s ease forwards;
}
.section-title {
opacity: 0;
animation: fadeInUp 0.6s ease forwards;
}
.product-card {
opacity: 0;
animation: fadeInUp 0.6s ease forwards;
animation-play-state: paused;
}
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.15s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.25s; }
.product-card:nth-child(5) { animation-delay: 0.3s; }
.product-card:nth-child(6) { animation-delay: 0.35s; }
.pricing-card {
opacity: 0;
animation: fadeInUp 0.6s ease forwards;
animation-play-state: paused;
}
.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
/* ===== Responsive ===== */
@media (max-width: 1024px) {
.features-grid {
grid-template-columns: repeat(2, 1fr);
}
.products-grid {
grid-template-columns: repeat(2, 1fr);
}
.pricing-grid {
grid-template-columns: repeat(2, 1fr);
}
.footer-grid {
grid-template-columns: repeat(2, 1fr);
}
}
/* ===== Mobile Responsive - 手机竖屏版 ===== */
@media (max-width: 768px) {
/* 导航栏 */
.navbar .container {
height: 60px;
padding: 0 12px;
}
.logo {
padding: 0;
margin-left: 0;
}
.logo-img {
height: 40px;
margin-left: 0;
}
.nav-menu {
display: none;
position: absolute;
top: 64px;
left: 0;
right: 0;
background: white;
flex-direction: column;
padding: var(--spacing-md);
box-shadow: var(--shadow-md);
z-index: 999;
}
.nav-menu.active {
display: flex;
}
.nav-menu li { list-style: none !important;
margin: 8px 0;
}
.nav-link {
text-decoration: none !important;
text-decoration: none !important;
font-size: 16px;
padding: 12px 0;
display: block;
}
.nav-cta {
display: none;
}
.menu-toggle {
display: flex;
}
/* Hero Section */
.hero {
padding-top: 100px;
padding-bottom: var(--spacing-lg);
}
.hero h1 {
font-size: 28px;
line-height: 1.3;
}
.hero p {
font-size: 14px;
margin-top: 12px;
}
.hero-badge {
font-size: 12px;
padding: 6px 12px;
}
.hero-stats {
flex-direction: column;
gap: var(--spacing-sm);
margin-top: var(--spacing-md);
}
.stat-item {
flex-direction: row;
justify-content: space-between;
padding: 12px 16px;
}
.stat-number {
font-size: 24px;
}
.stat-label {
font-size: 13px;
}
.hero-buttons {
flex-direction: column;
gap: 12px;
}
.hero-buttons .btn {
width: 100%;
}
/* Section Titles */
.section-title {
font-size: 26px;
}
.section-subtitle {
font-size: 15px;
}
/* Features */
.features-grid {
grid-template-columns: 1fr;
gap: var(--spacing-sm);
}
.feature-card {
padding: var(--spacing-md);
}
.feature-icon {
font-size: 36px;
}
.feature-title {
font-size: 17px;
}
.feature-desc {
font-size: 13px;
}
/* Products */
.products-grid {
grid-template-columns: 1fr;
gap: var(--spacing-sm);
}
.product-card {
padding: var(--spacing-md);
}
.product-icon {
font-size: 40px;
}
.product-name {
font-size: 17px;
}
.product-price {
font-size: 20px;
}
.product-features li {
font-size: 13px;
}
/* Pricing */
.pricing-grid {
grid-template-columns: 1fr;
gap: var(--spacing-sm);
}
.pricing-card {
padding: var(--spacing-md);
}
.pricing-name {
font-size: 18px;
}
.pricing-price {
font-size: 28px;
}
.pricing-features {
font-size: 13px;
}
.pricing-features li {
padding: 8px 0;
}
/* Calculator */
.profit-calculator {
padding: var(--spacing-md);
}
.calculator-grid {
grid-template-columns: 1fr;
gap: var(--spacing-sm);
}
.level-tabs {
flex-direction: column;
gap: 8px;
}
.tab-btn {
padding: 12px 16px;
font-size: 15px;
}
.input-section,
.profit-section {
padding: 16px;
}
.profit-card .value {
font-size: 20px;
}
.product-detail table {
font-size: 12px;
}
.product-detail th,
.product-detail td {
padding: 8px 4px;
}
/* FAQ */
.faq-question {
font-size: 16px;
}
.faq-answer {
font-size: 14px;
}
/* CTA */
.cta {
padding: var(--spacing-lg) 0;
}
.cta h2 {
font-size: 22px;
}
.cta p {
font-size: 14px;
}
.cta-buttons {
flex-direction: column;
gap: 12px;
}
.cta-buttons .btn {
width: 100%;
}
/* Footer */
.footer {
padding: var(--spacing-lg) 0;
}
.footer-grid {
grid-template-columns: 1fr;
gap: var(--spacing-md);
}
.footer-brand h3 {
font-size: 18px;
}
.footer-title {
font-size: 15px;
}
.footer-links li {
font-size: 13px;
}
.footer-bottom {
flex-direction: column;
text-align: center;
font-size: 12px;
}
/* Tech Section */
.tech-flow {
flex-direction: column;
gap: var(--spacing-sm);
}
.tech-step {
padding: var(--spacing-sm);
}
.tech-step-icon {
font-size: 32px;
}
.tech-step-title {
font-size: 15px;
}
.tech-step-desc {
font-size: 12px;
}
.tech-arrow {
transform: rotate(90deg);
font-size: 20px;
}
.api-tags {
flex-wrap: wrap;
}
.api-tag {
font-size: 12px;
padding: 6px 12px;
}
/* Buttons */