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

:root {
    --red: #C41E3A;
    --red-dark: #8B1A2B;
    --red-light: #E8445A;
    --red-glow: rgba(196,30,58,0.3);
    --gold: #D4A853;
    --gold-light: #F0D48A;
    --gold-dark: #B8912E;
    --navy: #1A0A0E;
    --navy-light: #2A1018;
    --navy-mid: #3A1520;
    --blue: #C41E3A;
    --blue-light: #E8445A;
    --cyan: #E8445A;
    --text: #F0E6E8;
    --text-sub: #B8999E;
    --white: #FFFFFF;
    --glass: rgba(255,255,255,0.04);
    --glass-border: rgba(196,30,58,0.1);
    --radius: 16px;
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: #1e0350;
    color: #fee9ed;
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 3px; }

/* ===== Navigation ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgb(56 0 97 / 49%);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 12px;
    font-size: 20px; font-weight: 700; color: var(--white);
}
.nav-logo-icon {
    width: 40px; height: 40px;
    object-fit: contain;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
    font-size: 14px; color: var(--text-sub);
    transition: color 0.3s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding: 120px 24px 80px;
}
.hero-bg {
    position: absolute; inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(196,30,58,0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(196,30,58,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(196,30,58,0.08) 0%, transparent 50%);
}
.hero-particles {
    position: absolute; inset: 0; overflow: hidden;
}
.particle {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 900px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 13px; color: var(--gold);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}
.hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--text-sub);
    margin-bottom: 16px;
    font-weight: 400;
}
.hero-highlight {
    font-size: clamp(18px, 3vw, 28px);
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 40px;
}
.hero-highlight span {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(196,30,58,0.1);
    border: 1px solid rgba(196,30,58,0.3);
    border-radius: 8px;
    margin: 0 4px;
}

.hero-btns {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.btn-primary {
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    font-size: 15px; font-weight: 700;
    border: none; border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--red-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--red-glow);
}
.btn-outline {
    padding: 14px 36px;
    background: #37c6ff75;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(196,30,58,0.05);
}

/* ===== Section Common ===== */
.section {
    padding: 100px 24px;
    position: relative;
}
.section-inner {
    max-width: 1200px; margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-label {
    display: inline-block;
    font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.section-desc {
    font-size: 16px;
    color: var(--text-sub);
    max-width: 600px;
    margin: 0 auto;
}
.section-line {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
    margin: 20px auto 0;
}

/* ===== Stats ===== */
.stats {
    background: #0000004f;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-item {
    text-align: center;
    padding: 32px 16px;
}
.stat-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.stat-number .unit {
    font-size: 0.5em;
    -webkit-text-fill-color: var(--gold);
}
.stat-label {
    font-size: 14px;
    color: var(--text-sub);
    margin-top: 8px;
}

/* ===== About ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-text h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
}
.about-text p {
    color: var(--text-sub);
    margin-bottom: 16px;
    font-size: 15px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--glass);
    border: 1px solid rgb(196 30 58 / 68%);
    border-radius: 12px;
    transition: all 0.3s;
}
.about-feature:hover {
    border-color: rgba(196,30,58,0.3);
    transform: translateY(-2px);
}
.about-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgb(196 30 58 / 69%), rgba(196, 30, 58, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.about-feature-title {
    font-size: 14px; font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.about-feature-desc {
    font-size: 12px;
    color: var(--text-sub);
}

.about-visual {
    position: relative;
}
.about-card {
    background: linear-gradient(135deg, #101650, #26395b);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}
.about-card-code {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 2;
    color: var(--text-sub);
}
.about-card-code .keyword { color: #c678dd; }
.about-card-code .string { color: #98c379; }
.about-card-code .func { color: #61afef; }
.about-card-code .comment { color: #5c6370; font-style: italic; }
.about-card-code .number { color: var(--gold); }

/* ===== Core Strength ===== */
.strength {background: #1a080866;}
.strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.strength-card {
    background: #631a8b5c;
    border: 1px solid rgb(196 30 58 / 81%);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.strength-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.strength-card:hover {
    border-color: rgba(196,30,58,0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.strength-card:hover::before { opacity: 1; }

.strength-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(196,30,58,0.15), rgba(196,30,58,0.05));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.strength-title {
    font-size: 18px; font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.strength-desc {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.7;
}
.strength-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 12px;
    background: rgba(196,30,58,0.1);
    border: 1px solid rgba(196,30,58,0.2);
    border-radius: 6px;
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
}

/* ===== Services ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-item {
    padding: 28px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s;
}
.service-item:hover {
    border-color: rgba(196,30,58,0.3);
    transform: translateY(-3px);
    background: rgba(196,30,58,0.05);
}
.service-icon {
    font-size: 32px;
    margin-bottom: 16px;
}
.service-name {
    font-size: 14px; font-weight: 600;
    color: var(--white);
    line-height: 1.5;
}

/* ===== Business Scope ===== */
.scope { background: var(--navy-light); }
.scope-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.scope-block {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
}
.scope-block-title {
    font-size: 16px; font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
}
.scope-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.scope-tag {
    padding: 6px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-sub);
    transition: all 0.3s;
}
.scope-tag:hover {
    border-color: rgba(196,30,58,0.3);
    color: var(--text);
}

/* ===== News / 资讯 ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.news-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,168,83,0.3);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.news-card-cover {
    width: 100%;
    height: 160px;
    overflow: hidden;
}
.news-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.news-card:hover .news-card-cover img {
    transform: scale(1.05);
}
.news-card-body {
    padding: 18px 20px;
}
.news-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card-summary {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0 0 12px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}
.news-loading, .news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}
.news-more-wrap {
    text-align: center;
    margin-top: 40px;
}
.news-more-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
}
.news-more-btn:hover {
    background: rgba(212,168,83,0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,168,83,0.15);
}
/* 文章详情弹框 */
.article-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.article-modal {
    background: #1a1a20;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    width: 720px;
    max-width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.article-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 28px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.article-modal-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}
.article-modal-close {
    font-size: 18px;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    margin-left: 16px;
    flex-shrink: 0;
}
.article-modal-close:hover { color: #fff; }
.article-modal-meta {
    padding: 10px 28px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}
.article-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 28px 28px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
}
.article-modal-body img { max-width: 100%; border-radius: 8px; margin: 12px 0; }
.article-modal-body p { margin: 12px 0; }

/* ===== Contact ===== */
#contact {
    background: url('/images/bj.jpg') center/cover no-repeat fixed;
    position: relative;
}
#contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.75);
}
#contact > .section-inner {
    position: relative;
    z-index: 1;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.contact-card {
    background: #951f2f;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
}
.contact-card:hover {
    border-color: rgba(196,30,58,0.3);
    transform: translateY(-3px);
}
.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #b8912e, #f0d48a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}
.contact-label {
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 8px;
}
.contact-value {
    font-size: 16px; font-weight: 600;
    color: var(--white);
}

/* ===== Footer ===== */
.footer {
    padding: 40px 24px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}
.footer-text {
    font-size: 13px;
    color: var(--text-sub);
}
.footer-text a { color: var(--gold); }

/* ===== Founder ===== */
.founder {
    background: linear-gradient(rgba(26,10,14,0.75), rgba(26,10,14,0.85)), url('../images/wcl.jpg') center/cover no-repeat;
}
.founder-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}
.founder-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}
.founder-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    padding: 30px 0 10px;
}
.tl-step {
    flex: 1;
    max-width: 160px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tl-dot {
    width: 24px; height: 24px;
    background: transparent;
    border: 3px solid var(--gold);
    border-radius: 50%;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
    flex-shrink: 0;
}
.tl-active .tl-dot {
    background: var(--red);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.6);
}
.tl-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    flex-shrink: 0;
    margin-top: 10px;
}
.tl-year {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.tl-event {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}
.tl-desc {
    font-size: 12px;
    color: var(--text-sub);
    line-height: 1.8;
    margin-top: 8px;
}
.founder-quote {
    background: linear-gradient(135deg, rgba(196,30,58,0.08), rgba(212,168,83,0.06));
    border: 1px solid rgba(212,168,83,0.15);
    border-radius: 16px;
    padding: 32px 36px;
    position: relative;
    text-align: center;
}
.founder-quote-mark {
    font-size: 60px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.4;
    position: absolute;
    top: 12px; left: 24px;
    font-family: Georgia, serif;
}
.founder-quote p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
}
.founder-quote-name {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
}

/* ===== Business Direction ===== */
.direction {background: #2e2657;}
.direction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.direction-card {
    background: linear-gradient(180deg, #2a3c65ed, #1e0350);
    /* border: 1px solid rgb(196 30 58 / 40%); */
    border-radius: 20px;
    padding: 36px 28px 32px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.direction-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s;
}
.direction-card:hover {
    border-color: rgba(196,30,58,0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.direction-card:hover::after { transform: scaleX(1); }
.direction-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.direction-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgb(196 30 58 / 82%), rgb(196 30 58 / 51%));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
.direction-badge {
    padding: 4px 12px;
    background: rgb(196 30 58 / 81%);
    border: 1px solid rgb(196 30 58 / 91%);
    border-radius: 6px;
    font-size: 11px;
    color: var(--gold);
    font-weight: 700;
}
.direction-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffd66b;
    margin-bottom: 14px;
}
.direction-desc {
    font-size: 14px;
    color: #b7b7b7;
    line-height: 1.8;
    margin-bottom: 20px;
}
.direction-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.direction-highlights span {
    padding: 5px 12px;
    background: rgb(212 168 83 / 91%);
    border: 1px solid rgb(212 168 83 / 83%);
    border-radius: 6px;
    font-size: 12px;
    color: var(--gold-light);
    font-weight: 600;
}

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .strength-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .direction-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(26,10,14,0.98);
        backdrop-filter: blur(20px);
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-toggle { display: block; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .strength-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .scope-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; gap: 16px; }
    .article-modal { width: 100%; max-height: 90vh; border-radius: 12px; }
    .article-modal-header { padding: 18px 20px 12px; }
    .article-modal-body { padding: 8px 20px 20px; font-size: 14px; }
    .about-features { grid-template-columns: 1fr; }
    .founder-timeline { flex-direction: column; align-items: center; }
    .founder-line { width: 2px; height: 32px; margin: 0; background: linear-gradient(180deg, var(--gold-dark), var(--gold)); }
    .founder-step { min-width: auto; padding: 0; }
    
    .section { padding: 64px 16px; }
    .hero { padding: 100px 16px 60px; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero-btns { flex-direction: column; align-items: center; }
}
