/* Windows 客户端下载专题页风格 CSS */
:root {
    --win-blue: #0067C0; /* 经典 Windows 蓝 */
    --win-blue-hover: #005A9E;
    --win-dark: #111111;
    --text-main: #242424;
    --text-sub: #5E5E5E;
    --bg-light: #F2F2F2;
    --bg-white: #FFFFFF;
    --border-color: #E6E6E6;
    --radius-sm: 2px; /* Windows 风格偏向直角或极小圆角 */
    --radius-md: 4px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.1);
    --transition: all 0.2s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

body {
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-lg {
    padding: 12px 32px;
    font-size: 16px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background-color: var(--win-blue);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--win-blue-hover);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--win-blue);
    color: var(--win-blue);
    background-color: #F8F9FA;
}

.btn-icon {
    margin-right: 8px;
    font-size: 18px;
}

/* Navbar */
.win-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background-color: var(--win-blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-menu a {
    font-size: 14px;
    color: var(--text-main);
    padding: 20px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--win-blue);
    border-bottom-color: var(--win-blue);
}

/* Hero Section */
.win-hero {
    padding: 60px 0 80px;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.page-hero {
    padding: 40px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #E5F0FA;
    color: var(--win-blue);
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid #CCE0F5;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--win-dark);
}

.hero-desc {
    font-size: 16px;
    color: var(--text-sub);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.hero-meta {
    font-size: 12px;
    color: #888;
    display: flex;
    gap: 16px;
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

/* Data Section */
.win-data {
    padding: 40px 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.data-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--win-blue);
    margin-bottom: 4px;
}

.data-label {
    font-size: 14px;
    color: var(--text-sub);
}

/* Features */
.win-features {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-title {
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--win-dark);
}

.section-title p {
    font-size: 15px;
    color: var(--text-sub);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-item {
    padding: 32px 24px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-item:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    border-color: #CCCCCC;
}

.f-icon {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--win-blue);
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--win-dark);
}

.feature-item p {
    color: var(--text-sub);
    font-size: 14px;
    line-height: 1.6;
}

/* Solutions */
.win-solutions {
    padding: 80px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.solution-card:hover {
    box-shadow: var(--shadow-sm);
}

.solution-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.s-content {
    padding: 24px;
}

.s-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--win-dark);
}

.s-content p {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.6;
}

/* Download Page Specific */
.download-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.download-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition);
}

.download-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--win-blue);
}

.download-card.highlight {
    border: 2px solid var(--win-blue);
    position: relative;
}

.download-card.highlight::before {
    content: '推荐 Windows 用户';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--win-blue);
    color: #fff;
    font-size: 12px;
    padding: 2px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.d-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.download-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--win-dark);
}

.download-card p {
    color: var(--text-sub);
    font-size: 14px;
    margin-bottom: 24px;
    min-height: 42px;
}

.d-info {
    background-color: var(--bg-light);
    padding: 12px;
    font-size: 12px;
    color: var(--text-sub);
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
    text-align: left;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--win-dark);
    font-weight: 600;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.6;
}

/* CTA */
.win-cta {
    padding: 60px 0;
    background-color: var(--win-blue);
    color: #ffffff;
    text-align: center;
}

.cta-inner h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-actions .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: #ffffff;
}

.cta-actions .btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #ffffff;
}

/* Footer */
.win-footer {
    background-color: var(--bg-light);
    padding: 60px 0 24px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-size: 18px;
    color: var(--win-dark);
}

.footer-brand p {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-sub);
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 15px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--win-dark);
}

.footer-links a {
    display: block;
    color: var(--text-sub);
    font-size: 13px;
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--win-blue);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    font-size: 12px;
    color: #888;
}

@media (max-width: 900px) {
    .hero-grid, .data-grid, .features-grid, .solutions-grid, .download-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .nav-menu { display: none; }
    .hero-btns, .cta-actions { flex-direction: column; }
}