/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0ea5e9;
    --accent: #06b6d4;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #2563eb 0%, #0ea5e9 50%, #06b6d4 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

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

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
}

.nav-cta::after {
    display: none !important;
}

.nav-trial {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.nav-trial::after {
    display: none !important;
}

/* Hero Banner */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: white;
    color: var(--dark);
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* 通用区块样式 */
section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-desc {
    color: var(--gray);
    font-size: 1.1rem;
}

/* 服务卡片 */
.services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 10px;
}

/* 为什么选择我们 */
.why-us {
    background: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

.why-us-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.tech-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.tech-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border: 1px dotted rgba(37, 99, 235, 0.15);
    border-radius: 50%;
    animation: rotate 30s linear infinite reverse;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.main-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 行业解决方案 */
.industries {
    background: var(--light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.industry-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.industry-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.industry-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.industry-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 40px;
}

/* CTA区块 */
.cta {
    background: var(--gradient);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-or {
    color: rgba(255, 255, 255, 0.7);
}

.cta-phone {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.cta-phone i {
    margin-right: 10px;
}

/* 页脚 */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: white;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    white-space: nowrap;
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-contact li {
    white-space: nowrap;
    color: var(--gray-light);
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact li a {
    color: #ffffff;
    font-weight: 600;
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-us-image {
        order: -1;
    }
    
    .image-wrapper {
        width: 300px;
        height: 300px;
    }
    
    .tech-circle {
        width: 220px;
        height: 220px;
    }
    
    .tech-dots {
        width: 260px;
        height: 260px;
    }
    
    .main-icon {
        font-size: 3.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform 0.3s;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-phone {
        font-size: 1.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-or {
        display: none;
    }
}

/* 公众号文字 */
.footer-social .gzh-text {
    color: #fff;
    font-size: 0.75rem;
    margin-left: 5px;
}

/* 页脚二维码 */
.footer-qr {
    text-align: center;
    margin-top: 15px;
}
.footer-qr .qr-img-small {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.footer-qr .qr-label {
    display: block;
    color: #fff;
    font-size: 0.75rem;
    margin-top: 8px;
}

/* 二维码样式 */
.footer-qrcodes {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: nowrap;
}

.footer-qrcodes .footer-qr {
    text-align: center;
    flex-shrink: 0;
}

.footer-qrcodes .footer-qr img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.2);
}

.footer-qrcodes .footer-qr span {
    display: block;
    font-size: 12px;
    color: var(--gray-light);
    margin-top: 5px;
}

/* 确保手机号不换行 */
.footer-contact li {
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* 联系页面二维码 */
.qr-codes {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.qr-codes .qr-item {
    text-align: center;
    flex-shrink: 0;
}

.qr-codes .qr-item img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    border: 2px solid var(--primary);
}

.qr-codes .qr-item span {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-top: 5px;
}

/* 删除旧的qr-code样式引用 */
.qr-code {
    display: none;
}

/* footer二维码 */
.footer-qrcodes {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-qrcodes .footer-qr {
    text-align: center;
    flex-shrink: 0;
}

.footer-qrcodes .footer-qr img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.2);
}

.footer-qrcodes .footer-qr span {
    display: block;
    font-size: 11px;
    color: var(--gray-light);
    margin-top: 3px;
}

/* 确保footer联系人不换行 */
.footer-contact li {
    white-space: nowrap !important;
}


/* footer品牌区域二维码容器 */
.footer-brand-qrs {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-brand-qrs .footer-qr {
    text-align: center;
    flex-shrink: 0;
}

.footer-brand-qrs .footer-qr img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.2);
}

.footer-brand-qrs .footer-qr span {
    display: block;
    font-size: 11px;
    color: var(--gray-light);
    margin-top: 3px;
}

/* 隐藏旧的单个footer-qr在footer-brand中的显示 */
.footer-brand .footer-qr:only-child {
    display: none;
}

/* ===== 合作伙伴/品牌墙 ===== */
.partners {
    padding: 80px 0;
    background: var(--light);
    overflow: hidden;
}

.partners-scroll {
    overflow: hidden;
    margin: 40px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.partners-track {
    display: flex;
    gap: 30px;
    animation: scrollPartners 30s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    min-width: 180px;
    transition: all 0.3s;
    flex-shrink: 0;
}

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

.partner-logo {
    width: 56px;
    height: 56px;
    background: var(--light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
}

.partner-item span {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
    text-align: center;
}

.partners-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.partner-stat {
    text-align: center;
}

.partner-stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.partner-stat-text {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .partners-stats {
        gap: 30px;
    }
    .partner-stat-number {
        font-size: 1.6rem;
    }
    .partner-item {
        padding: 18px 24px;
        min-width: 150px;
    }
}

/* ===== Hero 手机展示 ===== */
.hero-phones {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-top: 40px;
    perspective: 1000px;
}

.phone-frame {
    width: 180px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}

.phone-frame:hover {
    transform: translateY(-10px) scale(1.05);
}

.phone-center {
    width: 200px;
    z-index: 2;
}

.phone-left {
    transform: rotateY(15deg) translateX(10px);
    opacity: 0.85;
}

.phone-right {
    transform: rotateY(-15deg) translateX(-10px);
    opacity: 0.85;
}

.phone-frame img {
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .hero-phones {
        display: none;
    }
}

/* ===== 系统截图展示 ===== */
.system-showcase {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.showcase-img {
    max-width: 280px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.showcase-img:hover {
    transform: scale(1.03);
}

.showcase-img.pc {
    max-width: 350px;
}

@media (max-width: 768px) {
    .system-showcase {
        flex-direction: column;
    }
    .showcase-img, .showcase-img.pc {
        max-width: 100%;
    }
}

/* ===== 产品页版本截图 ===== */
.version-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.version-screenshot:hover {
    transform: scale(1.02);
}

/* ===== 案例页图片 ===== */
.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

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

/* ===== 关于我们荣誉展示 ===== */
.honors-section {
    padding: 80px 0;
    background: white;
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.honor-item {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.honor-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.honor-item img {
    width: 100%;
    max-width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.honor-item p {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

@media (max-width: 992px) {
    .honors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .honors-grid {
        grid-template-columns: 1fr;
    }
    .honor-item img {
        max-width: 150px;
        height: 150px;
    }
}
