/* ============================================
   重庆景灵拓客科技有限公司 官网样式
   ============================================ */

:root {
    --primary: #1a3a6b;
    --primary-dark: #0f2447;
    --secondary: #c9a84c;
    --secondary-light: #e0c97a;
    --accent: #2563eb;
    --bg: #f8f9fc;
    --white: #ffffff;
    --text: #2d3748;
    --text-light: #64748b;
    --border: #e2e8f0;
    --shadow: 0 2px 12px rgba(26,58,107,0.08);
    --radius: 12px;
}

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

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --------------------------------------------
   HEADER
   -------------------------------------------- */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 20px;
    font-weight: 700;
}

.logo-text .name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.logo-text .sub {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-light);
    font-family: Arial, sans-serif;
}

.nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.nav a {
    font-size: 14px;
    color: var(--text);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

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

.header-tag {
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 22px;
    color: var(--primary);
}

/* --------------------------------------------
   HERO
   -------------------------------------------- */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }

.hero-badge {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--secondary-light);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.hero-sub {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 32px;
    font-weight: 300;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-meta-item {
    text-align: center;
}

.hero-meta-item .label {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.hero-meta-item .value {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-light);
}

/* --------------------------------------------
   SECTIONS
   -------------------------------------------- */
.section { padding: 64px 24px; }
.section-alt { background: var(--bg); }

.container { max-width: 1000px; margin: 0 auto; }

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 28px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 14px;
    color: var(--text-light);
}

/* --------------------------------------------
   INFO CARDS
   -------------------------------------------- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.info-card:hover {
    box-shadow: 0 6px 24px rgba(26,58,107,0.1);
    transform: translateY(-2px);
}

.info-card .card-label {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.info-card .card-value {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

.info-card.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
}

.info-card.highlight .card-label { color: var(--secondary-light); }
.info-card.highlight .card-value { color: var(--white); }

/* --------------------------------------------
   BUSINESS SCOPE
   -------------------------------------------- */
.scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.scope-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.scope-item i {
    color: var(--secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* --------------------------------------------
   FOOTER
   -------------------------------------------- */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 40px 24px;
    text-align: center;
}

.footer-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer p { font-size: 13px; line-height: 1.8; }
.footer-divider { width: 40px; height: 2px; background: var(--secondary); margin: 16px auto; }

/* --------------------------------------------
   DIVIDER
   -------------------------------------------- */
.divider {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
}

.divider-line { flex: 1; height: 1px; background: var(--border); }
.divider-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--secondary); }

/* --------------------------------------------
   RESPONSIVE
   -------------------------------------------- */
@media (max-width: 768px) {
    .nav-toggle { display: block; margin-left: auto; }
    .header-tag { display: none; }
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .nav.open { display: flex; }
    .hero h1 { font-size: 28px; }
    .hero-meta { gap: 20px; }
    .info-grid { grid-template-columns: 1fr; }
    .scope-grid { grid-template-columns: 1fr; }
}
