/* ============================================
   超自然现象调查与都市传说解密传媒 - 核心样式表
   色彩体系：夜视仪绿 + 绝密档案黄
   ============================================ */

/* CSS Variables */
:root {
    --primary: #00ff41;
    --primary-dark: #00cc33;
    --primary-glow: rgba(0, 255, 65, 0.3);
    --secondary: #f5c518;
    --secondary-dark: #d4a800;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-section-alt: #111111;
    --bg-card: rgba(20, 20, 20, 0.85);
    --bg-card-hover: rgba(30, 30, 30, 0.95);
    --text-primary: #e8e8e8;
    --text-secondary: #a0a0a0;
    --text-highlight: #ffffff;
    --border-subtle: rgba(0, 255, 65, 0.15);
    --border-card: rgba(0, 255, 65, 0.1);
    --shadow-glow: 0 0 20px rgba(0, 255, 65, 0.1);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-code: 'JetBrains Mono', 'Fira Code', monospace;
    --max-width: 1400px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
    text-shadow: 0 0 8px var(--primary-glow);
}

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

ul, ol {
    list-style: none;
}

/* ============ Loading Animation ============ */
.c6554f307 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.c6554f307.hidden {
    opacity: 0;
    visibility: hidden;
}

.c1940cdde {
    width: 80px;
    height: 80px;
    animation: pulse-glow 1.5s ease-in-out infinite;
}

.c1940cdde img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px var(--primary)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 30px var(--primary)); }
}

/* ============ Header & Navigation ============ */
.cfdc3c74f {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.cfdc3c74f.c4898421b {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
}

.c6298a47a {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c67b15fee {
    display: flex;
    align-items: center;
    gap: 12px;
}

.c67b15fee img {
    width: 40px;
    height: 40px;
}

.c88c3cae6 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.c1c9890d9 ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

.c1c9890d9 a {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

.c1c9890d9 a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.c1c9890d9 a:hover::after,
.c1c9890d9 a.c52f04cdb::after {
    width: 100%;
}

.c1c9890d9 a:hover {
    color: var(--primary);
}

.cda8d8b13 {
    background: var(--primary);
    color: var(--bg-dark) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm);
    font-weight: 700 !important;
    letter-spacing: 1px;
}

.cda8d8b13::after {
    display: none !important;
}

.cda8d8b13:hover {
    background: var(--secondary) !important;
    color: var(--bg-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 65, 0.3);
}

/* Mobile Menu */
.c95d90d12 {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.c95d90d12 span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* ============ Hero Section ============ */
.c0d7fee8d {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c94d4fb02 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.05);
    animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.c206f1ead {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.3) 0%,
        rgba(5, 5, 5, 0.6) 50%,
        rgba(5, 5, 5, 0.95) 100%
    );
}

.ce503f39b {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
    animation: fadeInUp 1s ease 0.5s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.c92ca0a53 {
    display: inline-block;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.c0d7fee8d h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-highlight);
}

.c0d7fee8d h1 .c86d879cd {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.cdfd9a3ba {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ce1572cc5 {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ Buttons ============ */
.cb9307361 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 1px;
}

.c20cd5020 {
    background: var(--primary);
    color: var(--bg-dark);
}

.c20cd5020:hover {
    background: var(--primary-dark);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.c8e761b18 {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.c8e761b18:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.c7ec904b6 {
    background: var(--secondary);
    color: var(--bg-dark);
}

.c7ec904b6:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 197, 24, 0.3);
}

/* ============ Section Common ============ */
.c501eab89 {
    padding: 100px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.c312db498 {
    background: var(--bg-section-alt);
}

.c88a52b95 {
    text-align: center;
    margin-bottom: 64px;
}

.c7c00f912 {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.c5121929c {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-highlight);
    margin-bottom: 16px;
    line-height: 1.3;
}

.cbaeb17a3 {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

/* ============ Trust Section ============ */
.cc881c05d {
    padding: 60px 24px;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.cb7ec32cc {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.c72359364 {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.cedb7b4d0 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-code);
}

.c07fd92a4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ============ Services/Advantages ============ */
.c83a9ae2e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.c52d9d932 {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.c52d9d932::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.c52d9d932:hover::before {
    transform: scaleX(1);
}

.c52d9d932:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}

.cac928452 {
    width: 56px;
    height: 56px;
    background: rgba(0, 255, 65, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.c52d9d932 h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-highlight);
    margin-bottom: 12px;
}

.c52d9d932 p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============ Cases/Gallery ============ */
.ce416ccc0 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.c611999a4 {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    group: true;
}

.c611999a4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.c611999a4:hover img {
    transform: scale(1.1);
}

.cb6a68789 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.c611999a4:hover .cb6a68789 {
    transform: translateY(0);
    opacity: 1;
}

.c1badd206 {
    display: inline-block;
    background: var(--secondary);
    color: var(--bg-dark);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cb6a68789 h4 {
    font-size: 1.1rem;
    color: var(--text-highlight);
    margin-bottom: 4px;
}

.cb6a68789 p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============ Pain Points Section ============ */
.cf3920482 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.c8ede6f09 {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.c8ede6f09:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.c403935d0 {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(245, 197, 24, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.ceae7723f h4 {
    font-size: 1.1rem;
    color: var(--text-highlight);
    margin-bottom: 8px;
}

.ceae7723f p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.ca1007fa0 {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-subtle);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============ Carousel/Swiper ============ */
.cae9d83c1 {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.c02130dc5 {
    display: flex;
    transition: transform 0.5s ease;
}

.ca439fe86 {
    min-width: 100%;
    position: relative;
}

.ca439fe86 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.ca2ec8fa7 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 255, 65, 0.2);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--primary);
    font-size: 1.2rem;
}

.ca2ec8fa7:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.c6957c844 { left: 16px; }
.ca45915d1 { right: 16px; }

.c59697839 {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.swiper-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-subtle);
    cursor: pointer;
    transition: var(--transition);
}

.swiper-dot.c52f04cdb {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* ============ Process/Flow Module ============ */
.c13c6958b {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.c13c6958b::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    opacity: 0.3;
}

.c4e41e95d {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ca284712b {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-code);
    transition: var(--transition);
}

.c4e41e95d:hover .ca284712b {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--primary-glow);
}

.c4e41e95d h4 {
    font-size: 1rem;
    color: var(--text-highlight);
    margin-bottom: 8px;
}

.c4e41e95d p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============ Quote Calculator ============ */
.cd63b41d3 {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.c90909eeb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.c6aba86d1 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.c6aba86d1.c4673c3ed {
    grid-column: 1 / -1;
}

.c6aba86d1 label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.c6aba86d1 input,
.c6aba86d1 select,
.c6aba86d1 textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: var(--transition);
    outline: none;
}

.c6aba86d1 input:focus,
.c6aba86d1 select:focus,
.c6aba86d1 textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.c6aba86d1 textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============ CTA Section ============ */
.c7f93c53f {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05), rgba(245, 197, 24, 0.05));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 80px 48px;
    text-align: center;
    margin: 80px auto;
    max-width: var(--max-width);
}

.c7f93c53f h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-highlight);
    margin-bottom: 16px;
}

.c7f93c53f p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============ Footer ============ */
.c9e53cb22 {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 24px 32px;
}

.cfd279c09 {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
}

.cd82e9eaa p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.8;
}

.c3697a59c h4 {
    color: var(--text-highlight);
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.c3697a59c h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.c3697a59c ul li {
    margin-bottom: 10px;
}

.c3697a59c ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.c3697a59c ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.c2a39dca4 {
    max-width: var(--max-width);
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============ Page Banner ============ */
.c2bf65e70 {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c2bf65e70 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.c2bf65e70 .c206f1ead {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.c07a271f3 {
    position: relative;
    z-index: 10;
    text-align: center;
}

.c2bf65e70 h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-highlight);
    margin-bottom: 12px;
}

.cb1951f0f {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cb1951f0f a {
    color: var(--primary);
}

/* ============ News/Article Cards ============ */
.c285a12b8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.cf739466d {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.cf739466d:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.cae17490f {
    height: 220px;
    overflow: hidden;
}

.cae17490f img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cf739466d:hover .cae17490f img {
    transform: scale(1.05);
}

.c3179a266 {
    padding: 24px;
}

.c93e0d1d9 {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.cf739466d h3 {
    font-size: 1.15rem;
    color: var(--text-highlight);
    margin-bottom: 8px;
    line-height: 1.5;
}

.cf739466d p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============ Form Success Page ============ */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0, 255, 65, 0.1);
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 3rem;
    color: var(--primary);
}

/* ============ Animations ============ */
.c670b1fee {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.c670b1fee.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Counter Animation */
.c238f3d11 {
    font-family: var(--font-code);
}

/* ============ Responsive Design ============ */
@media (max-width: 1024px) {
    .cfd279c09 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cf3920482 {
        grid-template-columns: 1fr;
    }
    
    .c13c6958b {
        flex-direction: column;
        align-items: center;
    }
    
    .c13c6958b::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .c95d90d12 {
        display: flex;
    }
    
    .c1c9890d9 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        padding: 80px 32px;
        transition: right 0.4s ease;
        z-index: 999;
        border-left: 1px solid var(--border-subtle);
    }
    
    .c1c9890d9.c52f04cdb {
        right: 0;
    }
    
    .c1c9890d9 ul {
        flex-direction: column;
        gap: 24px;
    }
    
    .c0d7fee8d h1 {
        font-size: 2rem;
    }
    
    .cdfd9a3ba {
        font-size: 1rem;
    }
    
    .c501eab89 {
        padding: 60px 16px;
    }
    
    .c83a9ae2e {
        grid-template-columns: 1fr;
    }
    
    .ce416ccc0 {
        grid-template-columns: 1fr;
    }
    
    .c285a12b8 {
        grid-template-columns: 1fr;
    }
    
    .c90909eeb {
        grid-template-columns: 1fr;
    }
    
    .cd63b41d3 {
        padding: 32px 20px;
    }
    
    .cfd279c09 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .c2a39dca4 {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .cb7ec32cc {
        justify-content: center;
    }
    
    .c7f93c53f {
        padding: 48px 24px;
        margin: 40px 16px;
    }
    
    .c7f93c53f h2 {
        font-size: 1.8rem;
    }
    
    .ca439fe86 img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .c0d7fee8d {
        min-height: 600px;
    }
    
    .ce1572cc5 {
        flex-direction: column;
        align-items: center;
    }
    
    .cb9307361 {
        width: 100%;
        justify-content: center;
    }
}

/* ============ Utility Classes ============ */
.cecf8799e { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary-color { color: var(--secondary); }
.mt-20 { margin-top: 20px; }
.c20918313 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* Parallax */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    opacity: 0.3;
    will-change: transform;
}
