/* ===== 问鼎娱乐 style.css ===== */
/* 随机风格：赛博朋克 + 奢华金 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #0b0b1a;
    color: #e0e0e0;
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}

body.light {
    background: #f0f2f8;
    color: #1a1a2e;
}

a {
    color: #f0c040;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: #ffaa00;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ===== Header ===== */
header {
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(240, 192, 64, 0.15);
    transition: background 0.3s;
}
body.light header {
    background: rgba(26, 26, 46, 0.85);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 800;
    color: #f0c040;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(240, 192, 64, 0.3);
}
.logo svg {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 0 8px rgba(240, 192, 64, 0.4));
}

.nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
}
.nav a {
    color: #cfcfdf;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
    transition: color 0.2s, transform 0.2s;
}
.nav a:hover,
.nav a.active {
    color: #f0c040;
    transform: translateY(-1px);
}
.nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f0c040, #ff8c00);
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(240, 192, 64, 0.5);
}

.theme-toggle {
    background: transparent;
    border: 1px solid rgba(240, 192, 64, 0.5);
    color: #f0c040;
    padding: 6px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}
.theme-toggle:hover {
    background: rgba(240, 192, 64, 0.2);
    box-shadow: 0 0 20px rgba(240, 192, 64, 0.2);
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    color: #f0c040;
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.2s;
}
.hamburger:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 16px 0;
        gap: 14px;
        background: rgba(10, 10, 26, 0.97);
        border-radius: 16px;
        margin-top: 8px;
        border: 1px solid rgba(240, 192, 64, 0.1);
    }
    .nav.open {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .logo {
        font-size: 22px;
    }
}

/* ===== Banner ===== */
.banner {
    position: relative;
    overflow: hidden;
    height: 520px;
    background: #0a0a18;
    border-radius: 0 0 50px 50px;
    margin-bottom: 40px;
    box-shadow: inset 0 -40px 60px rgba(0, 0, 0, 0.6);
}
body.light .banner {
    background: #1a1a2e;
}
.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(240, 192, 64, 0.08), transparent 60%);
    pointer-events: none;
}

.banner-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease, transform 0.8s ease;
    padding: 40px 20px;
    transform: scale(0.98);
}
.banner-slide.active {
    opacity: 1;
    transform: scale(1);
}

.banner-content {
    text-align: center;
    max-width: 800px;
    color: #fff;
    z-index: 2;
    animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.banner-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f0c040, #ff8c00, #f0c040);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(240, 192, 64, 0.2);
    letter-spacing: 2px;
}
.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.banner-content .btn {
    display: inline-block;
    background: linear-gradient(135deg, #f0c040, #ff8c00);
    color: #1a1a2e;
    padding: 16px 48px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(240, 192, 64, 0.3);
}
.banner-content .btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(240, 192, 64, 0.5);
}

.banner-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}
.banner-dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    border: 1px solid rgba(240, 192, 64, 0.2);
}
.banner-dots span.active {
    background: #f0c040;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(240, 192, 64, 0.5);
}
.banner-dots span:hover {
    background: rgba(240, 192, 64, 0.5);
}

@media (max-width: 768px) {
    .banner {
        height: 420px;
        border-radius: 0 0 30px 30px;
    }
    .banner-content h1 {
        font-size: 34px;
    }
    .banner-content p {
        font-size: 16px;
    }
    .banner-content .btn {
        padding: 14px 36px;
        font-size: 14px;
    }
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    font-size: 13px;
    padding: 16px 0;
    color: #999;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.breadcrumb a {
    color: #f0c040;
}
body.light .breadcrumb a {
    color: #1a73e8;
}

/* ===== Sections ===== */
.section {
    padding: 70px 0;
}
.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: #f0c040;
    text-shadow: 0 0 20px rgba(240, 192, 64, 0.15);
}
body.light .section-title {
    color: #1a1a2e;
    text-shadow: none;
}
.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #f0c040, #ff8c00);
    margin: 12px auto 0;
    border-radius: 4px;
    box-shadow: 0 0 16px rgba(240, 192, 64, 0.3);
}
.section-subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 44px;
    font-size: 16px;
}
body.light .section-subtitle {
    color: #666;
}

/* ===== Cards ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.card {
    background: rgba(20, 20, 40, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 1px solid rgba(240, 192, 64, 0.08);
}
body.light .card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.04);
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    border-color: rgba(240, 192, 64, 0.2);
}
body.light .card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.card-icon {
    font-size: 44px;
    margin-bottom: 18px;
    color: #f0c040;
    filter: drop-shadow(0 0 8px rgba(240, 192, 64, 0.2));
}
.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #f0f0f0;
}
body.light .card h3 {
    color: #1a1a2e;
}
.card p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.7;
}
body.light .card p {
    color: #555;
}

/* ===== About ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}
.about-text p {
    margin-bottom: 18px;
    color: #ccc;
}
body.light .about-text p {
    color: #444;
}
.about-text strong {
    color: #f0c040;
}

/* ===== Stats ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}
.stat-item {
    background: rgba(240, 192, 64, 0.06);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 28px 12px;
    border: 1px solid rgba(240, 192, 64, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}
.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(240, 192, 64, 0.1);
}
.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: #f0c040;
    text-shadow: 0 0 20px rgba(240, 192, 64, 0.2);
}
.stat-label {
    font-size: 14px;
    color: #aaa;
    margin-top: 6px;
}
body.light .stat-label {
    color: #666;
}

/* ===== Team ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.team-card {
    text-align: center;
    padding: 28px;
    background: rgba(20, 20, 40, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(240, 192, 64, 0.05);
}
body.light .team-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.team-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0c040, #ff8c00);
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #1a1a2e;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(240, 192, 64, 0.2);
}
.team-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #f0f0f0;
}
body.light .team-card h4 {
    color: #1a1a2e;
}
.team-card p {
    color: #999;
    font-size: 13px;
}

/* ===== FAQ ===== */
.faq-item {
    border-bottom: 1px solid rgba(240, 192, 64, 0.08);
    padding: 18px 0;
    cursor: pointer;
    transition: background 0.2s;
}
.faq-item:hover {
    background: rgba(240, 192, 64, 0.02);
}
body.light .faq-item {
    border-color: rgba(0, 0, 0, 0.08);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #f0f0f0;
}
body.light .faq-question {
    color: #1a1a2e;
}
.faq-question span {
    transition: transform 0.3s;
    color: #f0c040;
}
.faq-item.open .faq-question span {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s, opacity 0.4s, padding 0.3s;
    opacity: 0;
    padding-top: 0;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    opacity: 1;
    padding-top: 14px;
}
.faq-answer p {
    color: #bbb;
    font-size: 14px;
}
body.light .faq-answer p {
    color: #555;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.contact-item {
    text-align: center;
    padding: 24px;
    background: rgba(240, 192, 64, 0.04);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(240, 192, 64, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(240, 192, 64, 0.05);
}
.contact-item .label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-item .value {
    font-size: 16px;
    font-weight: 600;
    margin-top: 6px;
    color: #f0c040;
}
body.light .contact-item .value {
    color: #1a1a2e;
}

/* ===== Footer ===== */
.footer {
    background: #0a0a18;
    color: #ccc;
    padding: 48px 0 24px;
    border-radius: 50px 50px 0 0;
    margin-top: 40px;
    border-top: 1px solid rgba(240, 192, 64, 0.05);
}
body.light .footer {
    background: #1a1a2e;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 28px;
    margin-bottom: 28px;
}
.footer h4 {
    color: #f0c040;
    font-size: 16px;
    margin-bottom: 14px;
    letter-spacing: 1px;
}
.footer a {
    color: #aaa;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s, transform 0.2s;
}
.footer a:hover {
    color: #f0c040;
    transform: translateX(4px);
    text-decoration: none;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    font-size: 13px;
    color: #888;
}

/* ===== Search ===== */
.search-box {
    display: flex;
    gap: 8px;
    max-width: 400px;
    margin: 0 auto 30px;
}
.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(240, 192, 64, 0.2);
    border-radius: 40px;
    font-size: 14px;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    background: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
}
body.light .search-box input {
    background: #fff;
    color: #333;
    border-color: #ddd;
}
.search-box input:focus {
    border-color: #f0c040;
    box-shadow: 0 0 20px rgba(240, 192, 64, 0.1);
}
.search-box button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #f0c040, #ff8c00);
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #1a1a2e;
}
.search-box button:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(240, 192, 64, 0.3);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0c040, #ff8c00);
    color: #1a1a2e;
    border: none;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(240, 192, 64, 0.3);
    transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
}
.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}
.back-to-top:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 192, 64, 0.5);
}

/* ===== Scroll Animation ===== */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Partners ===== */
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}
.partner-logo {
    width: 110px;
    height: 55px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #888;
    border: 1px solid rgba(240, 192, 64, 0.05);
    transition: transform 0.3s, border-color 0.3s;
}
.partner-logo:hover {
    transform: scale(1.05);
    border-color: rgba(240, 192, 64, 0.2);
}
body.light .partner-logo {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.04);
}

/* ===== Testimonials ===== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: rgba(20, 20, 40, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(240, 192, 64, 0.05);
    transition: transform 0.3s;
}
body.light .testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}
.testimonial-card:hover {
    transform: translateY(-4px);
}
.testimonial-card::before {
    content: '"';
    font-size: 70px;
    position: absolute;
    top: 2px;
    left: 18px;
    color: rgba(240, 192, 64, 0.15);
    font-family: serif;
    line-height: 1;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 16px;
    color: #ccc;
}
body.light .testimonial-card p {
    color: #555;
}
.testimonial-author {
    font-weight: 600;
    font-size: 14px;
    color: #f0c040;
}
.testimonial-role {
    font-size: 12px;
    color: #888;
}

/* ===== News ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.news-card {
    background: rgba(20, 20, 40, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(240, 192, 64, 0.05);
}
body.light .news-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.news-img {
    height: 170px;
    background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240, 192, 64, 0.4);
    font-size: 14px;
    border-bottom: 1px solid rgba(240, 192, 64, 0.05);
}
.news-card .content {
    padding: 18px;
}
.news-card .content h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #f0f0f0;
}
body.light .news-card .content h4 {
    color: #1a1a2e;
}
.news-card .content p {
    font-size: 13px;
    color: #aaa;
}
.news-card .content .date {
    font-size: 12px;
    color: #777;
    margin-top: 8px;
}

/* ===== HowTo ===== */
.howto-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    counter-reset: step;
}
.howto-step {
    background: rgba(20, 20, 40, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(240, 192, 64, 0.05);
    transition: transform 0.3s;
}
body.light .howto-step {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}
.howto-step:hover {
    transform: translateY(-4px);
}
.howto-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -12px;
    left: -12px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f0c040, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a2e;
    box-shadow: 0 0 20px rgba(240, 192, 64, 0.3);
}
.howto-step h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #f0f0f0;
}
body.light .howto-step h4 {
    color: #1a1a2e;
}
.howto-step p {
    font-size: 13px;
    color: #bbb;
}
body.light .howto-step p {
    color: #666;
}

/* ===== Solutions ===== */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.solution-card {
    background: rgba(240, 192, 64, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(240, 192, 64, 0.1);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(240, 192, 64, 0.05);
}
.solution-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #f0c040;
}
.solution-card p {
    font-size: 13px;
    color: #bbb;
}
body.light .solution-card p {
    color: #666;
}

/* ===== Industry ===== */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}
.industry-item {
    background: rgba(20, 20, 40, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, border-color 0.2s;
    border: 1px solid rgba(240, 192, 64, 0.05);
}
body.light .industry-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
}
.industry-item:hover {
    transform: scale(1.04);
    border-color: rgba(240, 192, 64, 0.15);
}
.industry-item span {
    font-size: 14px;
    font-weight: 500;
    color: #ddd;
}
body.light .industry-item span {
    color: #333;
}

/* ===== EEAT ===== */
.eaat-section {
    background: rgba(240, 192, 64, 0.03);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 36px;
    margin-top: 20px;
    border: 1px solid rgba(240, 192, 64, 0.05);
}
.eaat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.eaat-item {
    font-size: 13px;
    color: #bbb;
}
body.light .eaat-item {
    color: #555;
}
.eaat-item strong {
    color: #f0c040;
}
body.light .eaat-item strong {
    color: #1a1a2e;
}

/* ===== Disclaimer ===== */
.disclaimer {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    line-height: 1.8;
    border: 1px solid rgba(240, 192, 64, 0.03);
}
body.light .disclaimer {
    background: rgba(0, 0, 0, 0.02);
}
.disclaimer strong {
    color: #f0c040;
}
body.light .disclaimer strong {
    color: #1a1a2e;
}

/* ===== Map ===== */
.map-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240, 192, 64, 0.3);
    font-size: 14px;
    margin-top: 20px;
    border: 1px solid rgba(240, 192, 64, 0.05);
}

/* ===== Utility ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ===== Responsive Fine-tune ===== */
@media (max-width: 480px) {
    .section-title {
        font-size: 26px;
    }
    .card {
        padding: 24px;
    }
    .banner-content .btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}