/* ============================================
   LQ护航电竞 - 和平精英护航官网
   昆明林秋网络科技有限公司
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', sans-serif;
    background: #0a0b0e;
    color: #e8e8e8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0b0e; }
::-webkit-scrollbar-thumb { background: #d4a84b; border-radius: 3px; }

/* ---------- Background Canvas ---------- */
.bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-canvas::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.bg-canvas::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 120, 50, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 11, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 168, 75, 0.1);
    transition: background 0.3s;
}

.nav-scrolled {
    background: rgba(10, 11, 14, 0.95);
    border-bottom-color: rgba(212, 168, 75, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.nav-logo span {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #d4a84b, #ff7832);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #a0a0a0;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4a84b, #ff7832);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #d4a84b;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(212, 168, 75, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 75, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.06) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 168, 75, 0.1);
    border: 1px solid rgba(212, 168, 75, 0.25);
    border-radius: 50px;
    font-size: 13px;
    color: #d4a84b;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #d4a84b, #ff7832, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px #d4a84b;
}

.hero-subtitle {
    font-size: 18px;
    color: #808080;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
}

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

/* ---------- Trust Badges ---------- */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 50px;
    font-size: 13px;
    color: #22c55e;
    font-weight: 500;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #d4a84b, #ff7832);
    border: none;
    border-radius: 50px;
    color: #0a0b0e;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 168, 75, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 168, 75, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    border: 1px solid rgba(212, 168, 75, 0.3);
    border-radius: 50px;
    color: #d4a84b;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(212, 168, 75, 0.1);
    border-color: #d4a84b;
}

/* Hero floating elements */
.hero-float {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    pointer-events: none;
}

.hero-float-1 {
    top: 15%;
    left: 10%;
    font-size: 120px;
    font-weight: 900;
    color: #d4a84b;
    font-family: 'Inter', sans-serif;
}

.hero-float-2 {
    bottom: 20%;
    right: 8%;
    font-size: 80px;
    font-weight: 900;
    color: #ff7832;
    font-family: 'Inter', sans-serif;
}

/* ---------- Section Shared ---------- */
.section {
    padding: 100px 40px;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(212, 168, 75, 0.08);
    border: 1px solid rgba(212, 168, 75, 0.15);
    border-radius: 50px;
    font-size: 12px;
    color: #d4a84b;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: #808080;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- Services Section ---------- */
.services {
    background: linear-gradient(180deg, transparent 0%, rgba(212, 168, 75, 0.02) 50%, transparent 100%);
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 0;
    max-width: 235px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 75, 0.1);
    border-radius: 16px;
    padding: 24px 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d4a84b, #ff7832);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 168, 75, 0.25);
    transform: translateY(-4px);
}

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

.service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(212, 168, 75, 0.1);
    margin-bottom: 14px;
    font-size: 22px;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #f0f0f0;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 13px;
    color: #808080;
    line-height: 1.6;
}

.service-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(212, 168, 75, 0.1);
    border: 1px solid rgba(212, 168, 75, 0.2);
    border-radius: 6px;
    font-size: 11px;
    color: #d4a84b;
    margin-top: 12px;
}

/* ---------- Featured / Metro Escort ---------- */
.featured {
    position: relative;
}

.featured-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(212, 168, 75, 0.05), rgba(255, 120, 50, 0.05));
    border: 1px solid rgba(212, 168, 75, 0.15);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.featured-content h2 span {
    background: linear-gradient(135deg, #d4a84b, #ff7832);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-content p {
    font-size: 15px;
    color: #808080;
    line-height: 1.7;
    margin-bottom: 24px;
}

.featured-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-box {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(212, 168, 75, 0.1);
}

.stat-box .num {
    font-size: 28px;
    font-weight: 700;
    color: #d4a84b;
}

.stat-box .label {
    font-size: 12px;
    color: #808080;
    margin-top: 4px;
}

.featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-visual .game-icon {
    font-size: 160px;
    opacity: 0.15;
    line-height: 1;
}

/* ---------- About Section ---------- */
.about {
    background: linear-gradient(180deg, transparent 0%, rgba(212, 168, 75, 0.02) 50%, transparent 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 16px;
    color: #808080;
    line-height: 1.8;
    margin-bottom: 40px;
}

.company-info {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.info-item {
    flex: 1;
    min-width: 0;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 75, 0.1);
    border-radius: 12px;
}

.info-item .key {
    font-size: 12px;
    color: #808080;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item .value {
    font-size: 14px;
    color: #d4a84b;
    font-weight: 500;
}

/* ---------- Cooperation Section ---------- */
.cooperation {
    background: linear-gradient(180deg, transparent 0%, rgba(212, 168, 75, 0.02) 50%, transparent 100%);
}

.cooperation-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.coop-card {
    flex: 1;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 75, 0.1);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.coop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d4a84b, #ff7832);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.coop-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 168, 75, 0.25);
    transform: translateY(-4px);
}

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

.featured-coop {
    border-color: rgba(212, 168, 75, 0.25);
    background: linear-gradient(135deg, rgba(212, 168, 75, 0.06), rgba(255, 120, 50, 0.04));
}

.coop-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(212, 168, 75, 0.1);
    border-radius: 16px;
}

.coop-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #f0f0f0;
    margin-bottom: 10px;
}

.coop-card p {
    font-size: 13px;
    color: #808080;
    line-height: 1.7;
    margin-bottom: 16px;
}

.coop-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.coop-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 168, 75, 0.08);
    border: 1px solid rgba(212, 168, 75, 0.15);
    border-radius: 50px;
    font-size: 11px;
    color: #d4a84b;
}

@media (max-width: 768px) {
    .cooperation-grid {
        flex-wrap: wrap;
    }
    .coop-card {
        flex: none;
        width: calc(50% - 10px);
        max-width: none;
    }
}

@media (max-width: 480px) {
    .coop-card {
        width: 100%;
    }
}

/* ---------- Artists Section ---------- */
.artists {
    background: linear-gradient(180deg, transparent 0%, rgba(212, 168, 75, 0.02) 50%, transparent 100%);
}

.artists-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
}

.artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex: 1;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 75, 0.1);
    border-radius: 18px;
    padding: 28px 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.featured-artist {
    border-color: rgba(212, 168, 75, 0.25);
    background: linear-gradient(135deg, rgba(212, 168, 75, 0.06), rgba(255, 120, 50, 0.04));
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d4a84b, #ff7832);
}

.artist-avatar {
    flex-shrink: 0;
}

.artist-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(212, 168, 75, 0.25);
    object-fit: cover;
    display: block;
}

.avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(212, 168, 75, 0.1);
    border: 2px solid rgba(212, 168, 75, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-info {
    flex: 1;
    min-width: 0;
}

.artist-badge {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(212, 168, 75, 0.1);
    border: 1px solid rgba(212, 168, 75, 0.2);
    border-radius: 50px;
    font-size: 11px;
    color: #d4a84b;
    margin-bottom: 6px;
}

.artist-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 6px;
}

.artist-desc {
    font-size: 13px;
    color: #808080;
    line-height: 1.6;
    margin-bottom: 14px;
}

.artist-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.artist-stat {
    text-align: center;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 75, 0.1);
    border-radius: 8px;
    flex: 1;
}

.artist-num {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #d4a84b;
}

.artist-label {
    display: block;
    font-size: 10px;
    color: #808080;
    margin-top: 1px;
}

.artist-platforms {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.platform-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(212, 168, 75, 0.08);
    border: 1px solid rgba(212, 168, 75, 0.15);
    border-radius: 50px;
    font-size: 12px;
    color: #d4a84b;
}

.platform-link {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: rgba(212, 168, 75, 0.2);
    border-color: #d4a84b;
    transform: translateY(-1px);
}

.artists-more {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
    color: #606060;
}

.artists-more p {
    display: inline-block;
    padding: 8px 24px;
    border: 1px dashed rgba(212, 168, 75, 0.2);
    border-radius: 50px;
}

@media (max-width: 768px) {
    .artists-grid {
        flex-wrap: wrap;
    }
    .artist-card {
        max-width: none;
        width: calc(50% - 8px);
    }
}

@media (max-width: 480px) {
    .artist-card {
        width: 100%;
    }
    .artist-meta {
        flex-wrap: wrap;
    }
    .artist-stat {
        flex: none;
        width: calc(50% - 4px);
    }
    .artist-img {
        width: 64px;
        height: 64px;
    }
    .artist-info h3 {
        font-size: 16px;
    }
}

/* ---------- QR Code Section ---------- */
.qr-section {
    text-align: center;
}

.qr-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

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

.qr-box .qr-frame {
    width: 220px;
    height: 220px;
    background: #fff;
    border-radius: 20px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 168, 75, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 16px;
}

.qr-box .qr-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-box .qr-label {
    font-size: 14px;
    color: #808080;
}

.qr-box .qr-label strong {
    color: #d4a84b;
}

.qr-info {
    text-align: left;
    max-width: 360px;
}

.qr-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f0f0f0;
}

.qr-info p {
    font-size: 14px;
    color: #808080;
    line-height: 1.7;
    margin-bottom: 16px;
}

.qr-info .steps {
    list-style: none;
    padding: 0;
}

.qr-info .steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: #a0a0a0;
}

.qr-info .steps li .step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(212, 168, 75, 0.15);
    color: #d4a84b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

/* ---------- Provider Section ---------- */
.provider-section {
    border-top: 1px solid rgba(212, 168, 75, 0.08);
}

.provider-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.provider-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

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

.provider-name {
    font-size: 20px;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 4px;
}

.provider-link {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s;
}

.provider-link:hover {
    color: #d4a84b;
}

.provider-role {
    font-size: 13px;
    color: #808080;
}

.provider-divider {
    display: flex;
    align-items: center;
    opacity: 0.6;
}

.provider-desc {
    font-size: 14px;
    color: #606060;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

/* ---------- Footer ---------- */
.footer {
    padding: 40px;
    border-top: 1px solid rgba(212, 168, 75, 0.08);
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 13px;
    color: #606060;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4a84b;
}

.footer p {
    font-size: 13px;
    color: #505050;
}

.footer .brand-footer {
    color: #d4a84b;
    font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .nav {
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-logo span {
        font-size: 16px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-trust {
        gap: 8px;
    }

    .trust-badge {
        font-size: 12px;
        padding: 5px 10px;
    }

    .section {
        padding: 60px 20px;
    }

    .featured-card {
        grid-template-columns: 1fr;
        padding: 30px 24px;
    }

    .featured-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .qr-wrapper {
        flex-direction: column;
        gap: 32px;
    }

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

    .qr-info .steps li {
        justify-content: center;
    }

    .hero-float {
        display: none;
    }

    .services-grid {
        flex-wrap: wrap;
    }
    .service-card {
        flex: none;
        width: calc(50% - 8px);
        max-width: none;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .features-stats {
        gap: 10px;
    }

    .stat-box .num {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

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

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

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

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

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

    .section-desc {
        font-size: 14px;
    }

    .service-card {
        width: 100%;
        padding: 20px 16px;
    }

    .footer-links {
        gap: 16px;
    }

    .footer-links a {
        font-size: 12px;
        padding: 6px 0;
    }

    .featured-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .stat-box {
        padding: 12px 8px;
    }

    .stat-box .num {
        font-size: 22px;
    }

    .qr-box .qr-frame {
        width: 180px;
        height: 180px;
    }

    .info-item {
        width: 100%;
    }
    .service-card {
        width: 100%;
    }
    .company-info {
        flex-wrap: wrap;
    }
    .info-item {
        flex: none;
        width: calc(50% - 6px);
    }
}

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