* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #080f1a;
    color: #e8f0f8;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

.section {
    padding: 80px 0;
}

/* ===== 粒子画布 ===== */
#particleCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* ===== 滚动条 ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a1a2b; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #00d4ff, #7b61ff); border-radius: 10px; }

/* ===== 导航 ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 15, 26, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    background: linear-gradient(135deg, #00d4ff, #7b61ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav a {
    color: #b0c8dd;
    text-decoration: none;
    margin-left: 32px;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #7b61ff);
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav a:hover { color: #00d4ff; }
nav a:hover::after { width: 100%; }

/* ===== 首屏 ===== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.30) saturate(1.3);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #90d5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    color: #b8d0e5;
    margin-bottom: 36px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    padding: 14px 48px;
    background: linear-gradient(135deg, #0077ff, #00d4ff);
    border-radius: 60px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 119, 255, 0.3);
    transition: transform 0.2s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 119, 255, 0.5);
}

/* 按钮呼吸光效 */
.btn-glow {
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(0, 119, 255, 0.3); }
    50% { box-shadow: 0 8px 48px rgba(0, 119, 255, 0.6), 0 0 80px rgba(0, 119, 255, 0.15); }
}

.trust-badges {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    font-size: 15px;
    color: #8aaccc;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== 滚动指示器 ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: floatDown 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: linear-gradient(180deg, #00d4ff, #7b61ff);
    border-radius: 2px;
    animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes floatDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(16px); opacity: 0; }
}

/* ===== 统计条 ===== */
.stats-section {
    background: rgba(0, 212, 255, 0.02);
    border-top: 1px solid rgba(0, 212, 255, 0.05);
    border-bottom: 1px solid rgba(0, 212, 255, 0.05);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 16px;
}

.stat-number {
    font-size: 44px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #7b61ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: #8aaccc;
    font-size: 16px;
    margin-top: 8px;
    letter-spacing: 1px;
}

/* ===== 通用标题 ===== */
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.section-title span {
    background: linear-gradient(135deg, #00d4ff, #7b61ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== 服务卡片 ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

/* 服务卡片流光效果 */
.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover::before {
    opacity: 1;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 212, 255, 0.08);
    background: rgba(255, 255, 255, 0.07);
}

.service-card .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
    transition: transform 0.4s;
}

.service-card:hover .icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    color: #b0c8dd;
    font-size: 15px;
    line-height: 1.7;
}

.service-card .tag {
    display: inline-block;
    margin-top: 20px;
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== 看板 ===== */
.dashboard-section {
    background: rgba(0, 212, 255, 0.015);
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.metric-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 24px 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.metric-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.metric-card:hover::after { opacity: 1; }
.metric-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.3); }

.metric-value {
    font-size: 36px;
    font-weight: 700;
    color: #00d4ff;
}

.metric-value small {
    font-size: 16px;
    color: #8aaccc;
    font-weight: 400;
}

.metric-label {
    color: #8aaccc;
    font-size: 14px;
    margin-top: 4px;
}

.metric-change {
    font-size: 14px;
    color: #4ade80;
    margin-left: 8px;
}

/* ===== 柱状图 ===== */
.chart-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 200px;
    gap: 12px;
}

.bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.bar {
    width: 100%;
    max-width: 40px;
    background: linear-gradient(180deg, #00d4ff, #7b61ff);
    border-radius: 6px 6px 0 0;
    min-height: 8px;
    transition: height 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    height: 20px;
}

.bar-item:hover .bar {
    filter: brightness(1.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.bar-label {
    color: #6a8aaa;
    font-size: 12px;
    margin-top: 12px;
}

/* ===== 报告列表 ===== */
.reports-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.report-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid #00d4ff;
    border-radius: 12px;
    transition: all 0.3s;
}

.report-item:hover {
    background: rgba(0, 212, 255, 0.05);
    transform: translateX(6px);
    border-left-color: #7b61ff;
}

.report-info h4 {
    font-size: 18px;
    font-weight: 600;
}

.report-info p {
    color: #8aaccc;
    font-size: 14px;
    margin-top: 4px;
}

.report-date {
    color: #4a6a8a;
    font-size: 14px;
    white-space: nowrap;
}

/* ===== 评价 ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-card .avatar {
    font-size: 48px;
    margin-bottom: 12px;
    display: inline-block;
    transition: transform 0.3s;
}

.testimonial-card:hover .avatar {
    transform: scale(1.15);
}

.testimonial-card .name {
    font-weight: 600;
    font-size: 18px;
}

.testimonial-card .role {
    color: #00d4ff;
    font-size: 14px;
}

.testimonial-card .content {
    margin-top: 16px;
    color: #b8d0e5;
    font-style: italic;
}

/* ===== 页脚 ===== */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    text-align: center;
    color: #5a7a9a;
    font-size: 14px;
}

.footer-content p { margin: 6px 0; }

.footer-filings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ba-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-content a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-content a:hover {
    color: #7b61ff;
    text-decoration: underline;
}

/* ===== 浮动联系方式面板 ===== */
.float-contact-panel {
    position: fixed;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(8, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-right: none;
    border-radius: 16px 0 0 16px;
    padding: 12px;
    width: 150px;
    z-index: 1000;
    transition: right 0.3s ease;
}

.float-contact-panel.show { right: 0; }

.float-contact-panel .panel-title {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    color: #00d4ff;
}

.float-contact-panel .qrcode-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-contact-panel .qrcode-item { text-align: center; }

.float-contact-panel .qrcode-item .icon {
    font-size: 18px;
    margin-bottom: 4px;
}

.float-contact-panel .qrcode-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #fff;
}

.float-contact-panel .qrcode-item .name {
    font-size: 12px;
    color: #b0c8dd;
    margin-top: 4px;
}

.float-contact-trigger {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #00d4ff, #7b61ff);
    width: 40px;
    height: 100px;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: transform 0.2s;
}

.float-contact-trigger:hover { transform: translateY(-50%) scale(1.1); }

/* ===== ★★★ 最新动态 - 科技风重设计 ★★★ ===== */
.news-section {
    background: linear-gradient(180deg, rgba(0, 213, 255, 0.02), transparent);
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.news-item {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 36px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    cursor: default;
}

/* 炫彩渐变边框 */
.news-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(0, 212, 255, 0.3),
        rgba(123, 97, 255, 0.3),
        transparent,
        rgba(0, 212, 255, 0.3),
        transparent
    );
    z-index: -2;
    opacity: 0;
    transition: opacity 0.6s;
    animation: conicSpin 6s linear infinite;
}

.news-item:hover::before { opacity: 1; }

@keyframes conicSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.news-item::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 19px;
    background: #0a121f;
    z-index: -1;
}

/* 悬停效果 */
.news-item:hover {
    transform: translateY(-4px) scale(1.008);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.05);
}

/* 序号装饰 */
.news-item .news-index {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 212, 255, 0.06);
    line-height: 1;
    user-select: none;
    font-family: 'Arial', sans-serif;
}

.news-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.news-date {
    font-size: 12px;
    color: #7ac;
    background: rgba(0, 213, 255, 0.1);
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 213, 255, 0.08);
}

.news-source {
    font-size: 12px;
    color: #6a9aba;
    font-style: italic;
    padding-left: 10px;
    border-left: 1px solid rgba(255,255,255,0.06);
}

/* 科技感标题 */
.news-title {
    font-size: 20px;
    font-weight: 600;
    color: #e8f0f8;
    margin-bottom: 12px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    padding-right: 60px;
    transition: color 0.3s;
}

.news-item:hover .news-title {
    background: linear-gradient(90deg, #e8f0f8, #90d5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-summary {
    font-size: 14px;
    color: #b0c8dd;
    line-height: 1.7;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

/* 小编点评区域 */
.news-comment {
    margin-top: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(0, 213, 255, 0.04), rgba(123, 97, 255, 0.02));
    border-left: 3px solid;
    border-image: linear-gradient(180deg, #00d4ff, #7b61ff) 1;
    border-radius: 0 12px 12px 0;
    position: relative;
    z-index: 1;
}

.news-comment-label {
    font-size: 14px;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-comment p {
    font-size: 14px;
    color: #b8d0e5;
    line-height: 1.85;
}

.news-footer {
    margin-top: 14px;
    position: relative;
    z-index: 1;
}

/* 评论展开按钮 */
.news-toggle-btn {
    background: transparent;
    border: 1px solid rgba(0, 213, 255, 0.2);
    color: #00d4ff;
    padding: 6px 22px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.news-toggle-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0,213,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.news-toggle-btn:hover::before { transform: translateX(100%); }
.news-toggle-btn:hover { border-color: #00d4ff; box-shadow: 0 0 20px rgba(0,213,255,0.15); }

.toggle-icon { font-size: 12px; transition: transform 0.3s; }

/* ===== 滚动入场动画 ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active .stat-item:nth-child(1) { transition-delay: 0s; }
.reveal.active .stat-item:nth-child(2) { transition-delay: 0.1s; }
.reveal.active .stat-item:nth-child(3) { transition-delay: 0.2s; }
.reveal.active .stat-item:nth-child(4) { transition-delay: 0.3s; }

/* 服务卡片交错入场 */
.reveal.active .service-card:nth-child(1) { transition-delay: 0s; }
.reveal.active .service-card:nth-child(2) { transition-delay: 0.08s; }
.reveal.active .service-card:nth-child(3) { transition-delay: 0.16s; }
.reveal.active .service-card:nth-child(4) { transition-delay: 0.24s; }
.reveal.active .service-card:nth-child(5) { transition-delay: 0.32s; }
.reveal.active .service-card:nth-child(6) { transition-delay: 0.40s; }
.reveal.active .service-card:nth-child(7) { transition-delay: 0.48s; }
.reveal.active .service-card:nth-child(8) { transition-delay: 0.56s; }

/* 新闻卡片交错入场 */
.reveal.active .news-item:nth-child(1) { transition-delay: 0s; }
.reveal.active .news-item:nth-child(2) { transition-delay: 0.06s; }
.reveal.active .news-item:nth-child(3) { transition-delay: 0.12s; }
.reveal.active .news-item:nth-child(4) { transition-delay: 0.18s; }
.reveal.active .news-item:nth-child(5) { transition-delay: 0.24s; }
.reveal.active .news-item:nth-child(6) { transition-delay: 0.30s; }
.reveal.active .news-item:nth-child(7) { transition-delay: 0.36s; }
.reveal.active .news-item:nth-child(8) { transition-delay: 0.42s; }
.reveal.active .news-item:nth-child(9) { transition-delay: 0.48s; }
.reveal.active .news-item:nth-child(10) { transition-delay: 0.54s; }
.reveal.active .news-item:nth-child(11) { transition-delay: 0.60s; }
.reveal.active .news-item:nth-child(12) { transition-delay: 0.66s; }

/* 渐变文字动画 */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== 响应式 ===== */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .stats-grid,
    .services-grid,
    .dashboard-metrics,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 { font-size: 36px; }
    .nav-container { flex-direction: column; gap: 12px; }
    nav a { margin: 0 12px; font-size: 14px; }
    .trust-badges { flex-wrap: wrap; gap: 16px; }
    .report-item { flex-direction: column; align-items: start; gap: 8px; }
    .report-date { white-space: normal; }
    .section { padding: 50px 0; }
    .section-title { font-size: 28px; }

    .news-item { padding: 20px 20px; }
    .news-title { font-size: 17px; padding-right: 0; }
    .news-header { flex-wrap: wrap; gap: 8px; }
    .news-item .news-index { font-size: 32px; top: 10px; right: 14px; }

    .float-contact-panel { display: none; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 28px; }
    .hero-content p { font-size: 16px; }
    .btn-primary { padding: 12px 32px; font-size: 16px; }
    .stat-number { font-size: 32px; }
    .metric-value { font-size: 28px; }
}