```css
/* ========================================
   🎬 电影工厂 CINEMATIC BLUEPRINT
   A Film Engineering Design System
   ======================================== */

:root {
    --bg: #E9EEF2;
    --bg-alt: #DBE3E9;
    --bg-card: #F6F8FA;
    --primary: #19324E;
    --primary-light: #2B5678;
    --accent: #D94F3D;
    --accent-hover: #C43F2E;
    --gold: #D9A441;
    --gold-light: #E8C073;
    --text: #1A2B3C;
    --text-light: #5C6B7A;
    --border: #BCC9D4;
    --shadow-sm: 0 2px 10px rgba(25,50,78,0.06);
    --shadow-md: 0 10px 35px rgba(25,50,78,0.10);
    --shadow-lg: 0 24px 65px rgba(25,50,78,0.16);
    --radius: 6px;
    --radius-lg: 14px;
    --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ========== BASE RESET ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    overflow-x: hidden;
    background-color: var(--bg);
    background-image:
        linear-gradient(rgba(25,50,78,0.014) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25,50,78,0.014) 1px, transparent 1px);
    background-size: 44px 44px;
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--accent);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ========== CORE LAYOUT ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--bg-alt);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(25,50,78,0.06);
    border: 1px solid rgba(25,50,78,0.12);
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 16px;
    position: relative;
}

.section-label::before {
    content: '✚';
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 400;
}

.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -24px;
    width: 16px;
    height: 1px;
    background: var(--accent);
    opacity: 0.6;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 14px;
    color: var(--primary);
}

.section-title::first-letter {
    color: var(--accent);
}

.section-desc {
    max-width: 600px;
    opacity: 0.7;
    margin-bottom: 44px;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ========== HEADER / NAV ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(233,238,242,0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(25,50,78,0.1);
    box-shadow: 0 1px 20px rgba(25,50,78,0.04);
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary) 0px,
        var(--primary) 6px,
        transparent 6px,
        transparent 10px,
        var(--accent) 10px,
        var(--accent) 16px,
        transparent 16px,
        transparent 20px
    );
    opacity: 0.4;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--primary);
    letter-spacing: -0.01em;
    transition: opacity 0.25s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--primary) 60%, var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(25,50,78,0.25);
}

.logo-icon::before {
    content: '🎬';
    font-size: 16px;
    line-height: 1;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: repeating-linear-gradient(
        135deg,
        var(--gold) 0px,
        var(--gold) 2.5px,
        var(--primary) 2.5px,
        var(--primary) 5px
    );
    opacity: 0.8;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
}

.main-nav a:hover {
    color: var(--primary);
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    border-radius: 4px;
    background: var(--accent) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(217,79,61,0.3);
    transition: all 0.3s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217,79,61,0.4);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-card);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: border-color 0.3s;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: 0.3s;
}

.menu-toggle:hover {
    border-color: var(--primary);
}

/* ========== HERO ========== */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 140px 24px 90px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background-image:
        linear-gradient(rgba(25,50,78,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25,50,78,0.03) 1px, transparent 1px);
    background-size: 36px 36px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.hero::after {
    content: '×\00000aNO.2407';
    position: absolute;
    bottom: 30px;
    right: 24px;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    opacity: 0.5;
}

.hero-content {
    flex: 1;
    max-width: 640px;
    position: relative;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 2px;
    margin-bottom: 24px;
    background: rgba(25,50,78,0.06);
    border: 1px solid rgba(25,50,78,0.15);
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.hero-eyebrow::before {
    content: '●';
    color: var(--accent);
    font-size: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--primary);
}

.hero h1 .text-accent {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.05rem;
    opacity: 0.7;
    max-width: 540px;
    margin-bottom: 36px;
    color: var(--text);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 0 0 42%;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(25,50,78,0.1);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 40px;
    height: 40px;
    border-top: 3px solid var(--accent);
    border-left: 3px solid var(--accent);
    z-index: 2;
    border-radius: 4px 0 0 0;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 40px;
    height: 40px;
    border-bottom: 3px solid var(--accent);
    border-right: 3px solid var(--accent);
    z-index: 2;
    border-radius: 0 0 4px 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(217,79,61,0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217,79,61,0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
}

.btn-outline:hover {
    background: rgba(25,50,78,0.06);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

/* ========== CARDS GRID ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
    position: relative;
}

.category-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition);
    overflow: hidden;
}

.category-card::before,
.category-card::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.category-card::before {
    top: 10px;
    left: 10px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    border-radius: 2px 0 0 0;
}

.category-card::after {
    bottom: 10px;
    right: 10px;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    border-radius: 0 0 2px 0;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(25,50,78,0.2);
}

.category-card:hover::before,
.category-card:hover::after {
    opacity: 1;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    background: linear-gradient(135deg, rgba(25,50,78,0.08), rgba(25,50,78,0.02));
    border: 1px solid rgba(25,50,78,0.08);
    transition: all 0.3s;
}

.category-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transform: scale(1.05) rotate(-5deg);
}

.category-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.category-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.card-link {
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link::after {
    content: '→';
    transition: transform 0.3s;
}

.card-link:hover::after {
    transform: translateX(4px);
}

/* ========== FEATURE BLOCK ========== */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}

.feature-block::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        var(--border) 0px,
        var(--border) 8px,
        transparent 8px,
        transparent 16px
    );
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.5;
}

.feature-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(25,50,78,0.08);
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 24px;
    height: 24px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    z-index: 2;
    border-radius: 2px 0 0 0;
}

.feature-image::after {
    content: 'REC ●';
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: #fff;
    background: rgba(217,79,61,0.7);
    padding: 4px 10px;
    border-radius: 2px;
    z-index: 2;
    letter-spacing: 1px;
}

.feature-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.feature-image:hover img {
    transform: scale(1.03);
}

.feature-text {
    position: relative;
}

.feature-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-top: 8px;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text);
    border-bottom: 1px dashed rgba(25,50,78,0.08);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '◆';
    font-weight: 700;
    color: var(--accent);
    font-size: 0.7rem;
    background: rgba(217,79,61,0.12);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

/* ========== STATS BAR ========== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--primary));
    opacity: 0.7;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-family: 'Courier New', monospace;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '+';
    color: var(--accent);
    font-size: 1.4rem;
    position: absolute;
    top: 4px;
    right: -16px;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 8px;
    color: var(--text);
    letter-spacing: 1px;
    font-weight: 500;
}

/* ========== CONTENT WALL ========== */
.content-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.content-wall-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}

.content-wall-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(25,50,78,0.08)
    );
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.content-wall-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(25,50,78,0.2);
}

.content-wall-item:hover::after {
    opacity: 1;
}

.content-wall-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.content-wall-item:hover img {
    transform: scale(1.04);
}

.content-wall-body {
    padding: 24px;
}

.content-wall-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.content-wall-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.content-wall-body .content-wall-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(217,79,61,0.08);
    padding: 2px 10px;
    border-radius: 2px;
    margin-top: 12px;
    letter-spacing: 1px;
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(25,50,78,0.25);
}

.faq-item.open {
    border-color: rgba(217,79,61,0.3);
    box-shadow: var(--shadow-sm);
}

.faq-item .faq-question {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item .faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--accent);
    transition: transform 0.3s;
    font-weight: 400;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    padding: 0 24px 18px;
    display: none;
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text);
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 0.7; transform: translateY(0); }
}

/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 64px 48px;
    text-align: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #EEF2F5, #DCE4EA);
    border: 2px solid rgba(25,50,78,0.1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(25,50,78,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25,50,78,0.02) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.cta-banner::after {
    content: '🎬';
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 90px;
    opacity: 0.08;
    transform: rotate(-10deg);
}

.cta-banner h2 {
    color: var(--primary) !important;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary {
    background: var(--accent);
    color: #fff !important;
    box-shadow: 0 6px 24px rgba(217,79,61,0.4);
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217,79,61,0.5);
}

/* ========== FOOTER ========== */
.site-footer {
    padding: 70px 0 30px;
    background: var(--bg-alt);
    color: var(--text);
    border-top: 1px solid var(--border);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary) 0px,
        var(--primary) 5px,
        transparent 5px,
        transparent 9px,
        var(--accent) 9px,
        var(--accent) 14px,
        transparent 14px,
        transparent 18px
    );
    opacity: 0.3;
}

.site-footer .container {
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    position: relative;
}

.footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    padding: 6px 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.85rem;
    transition: color 0.3s;
    position: relative;
    padding-left: 14px;
}

.footer-col ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(2px);
}

.footer-bottom {
    border-top: 1px solid rgba(25,50,78,0.08);
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.footer-bottom::before {
    content: '◆ ';
}

.footer-bottom::after {
    content: ' ◆';
}

/* ========== UTILITY ========== */
.text-accent {
    color: var(--accent) !important;
}

.text-center {
    text-align: center;
}

.seo-description {
    max-width: 600px;
    margin: 0 auto 48px;
    opacity: 0.7;
    color: var(--text);
    line-height: 1.8;
    font-size: 0.92rem;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 120px 24px 60px;
        gap: 48px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        flex: 0 0 100%;
        width: 100%;
    }

    .hero-image img {
        aspect-ratio: 16/9;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-block::before {
        display: none;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 12px;
        right: 12px;
        background: var(--bg-card);
        padding: 24px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        z-index: 1000;
    }

    .main-nav.open {
        display: flex;
        animation: slideDown 0.35s ease;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 12px 8px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(25,50,78,0.06);
        width: 100%;
    }

    .main-nav a.nav-cta {
        border-bottom: none;
        text-align: center;
        margin-top: 8px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .cta-banner {
        padding: 40px 24px;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cards-grid,
    .content-wall,
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 100px 20px 50px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-image img {
        aspect-ratio: 4/3;
    }

    .section {
        padding: 60px 0;
    }

    .feature-list li {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 20px 14px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== EXTRA CINEMATIC DETAILS ========== */
.section-label:hover::before {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.category-card:nth-child(odd) {
    border-top-width: 2px;
    border-top-color: rgba(25,50,78,0.2);
}

.content-wall-item:nth-child(3n) {
    border-bottom-width: 2px;
    border-bottom-color: rgba(217,79,61,0.2);
}

/* Blueprint registration marks on sections */
@media (min-width: 769px) {
    .section::before {
        content: '+';
        position: absolute;
        top: 20px;
        right: 40px;
        font-size: 0.8rem;
        color: rgba(25,50,78,0.2);
        font-weight: 300;
    }
}

/* Film strip decorative band above the footer */
.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        rgba(25,50,78,0.4) 0px,
        rgba(25,50,78,0.4) 3px,
        transparent 3px,
        transparent 8px,
        rgba(217,79,61,0.4) 8px,
        rgba(217,79,61,0.4) 11px,
        transparent 11px,
        transparent 16px
    );
    opacity: 0.15;
}

/* Subtle card pattern */
.category-card::before {
    background:
        radial-gradient(circle at 85% 15%, rgba(25,50,78,0.03) 2px, transparent 3px),
        radial-gradient(circle at 10% 90%, rgba(25,50,78,0.02) 2px, transparent 3px);
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 1;
    border: none;
    transform: none;
}