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

/* 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 ============ */
.c3c6b34eb {
    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;
}

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

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

.ca606a3eb 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 ============ */
.c345bf79c {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.c345bf79c.c621cd94f {
    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;
}

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

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

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

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

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

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

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

.c16c88d69 a:hover::after,
.c16c88d69 a.c64ae3042::after {
    width: 100%;
}

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

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

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

.c10ede028: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 */
.c823d5099 {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

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

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

.c0b6ce5b2 {
    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); }
}

.c2096faff {
    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%
    );
}

.cd38b7d10 {
    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); }
}

.c94c667d6 {
    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;
}

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

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

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

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

/* ============ Buttons ============ */
.c64e7a6f8 {
    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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c3149f8d0 {
    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;
}

.c3149f8d0::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;
}

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

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

.ce5163af6 {
    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;
}

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

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

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

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

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

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

.cf02fa6e4 {
    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);
}

.ce1a1d499:hover .cf02fa6e4 {
    transform: translateY(0);
    opacity: 1;
}

.ca01e090a {
    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;
}

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

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

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

.c808d6224 {
    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);
}

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

.c0e5ea668 {
    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;
}

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

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

.c7566389f {
    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 ============ */
.c175cbf32 {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

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

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

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

.c176b766a {
    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;
}

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

.cac21c125 { left: 16px; }
.cf833b11f { right: 16px; }

.cbf896534 {
    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.c64ae3042 {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

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

.cdf1a57b5::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;
}

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

.c350ab33a {
    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);
}

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

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

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

/* ============ Quote Calculator ============ */
.c2100182d {
    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;
}

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

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

.c6987f626.ccc5e3b1b {
    grid-column: 1 / -1;
}

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

.c6987f626 input,
.c6987f626 select,
.c6987f626 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;
}

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

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

/* ============ CTA Section ============ */
.c7139b59a {
    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);
}

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

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

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

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

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

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

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

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

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

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

.cd2db202f {
    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 ============ */
.cd6b3e434 {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cd6b3e434 .c2096faff {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

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

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

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

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

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

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

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

.c8c0de67a:hover .caca1ea42 img {
    transform: scale(1.05);
}

.cbdbbb55a {
    padding: 24px;
}

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

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

.c8c0de67a 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 ============ */
.c8c2473b8 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.c8c2473b8.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 */
.cc07a3b84 {
    font-family: var(--font-code);
}

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

@media (max-width: 768px) {
    .c823d5099 {
        display: flex;
    }
    
    .c16c88d69 {
        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);
    }
    
    .c16c88d69.c64ae3042 {
        right: 0;
    }
    
    .c16c88d69 ul {
        flex-direction: column;
        gap: 24px;
    }
    
    .cf841a222 h1 {
        font-size: 2rem;
    }
    
    .c8b505220 {
        font-size: 1rem;
    }
    
    .c22a5f3bc {
        padding: 60px 16px;
    }
    
    .cac242c48 {
        grid-template-columns: 1fr;
    }
    
    .c668bd25f {
        grid-template-columns: 1fr;
    }
    
    .c3cf570e2 {
        grid-template-columns: 1fr;
    }
    
    .c83635e99 {
        grid-template-columns: 1fr;
    }
    
    .c2100182d {
        padding: 32px 20px;
    }
    
    .c5923419e {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cd2db202f {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .c7c06a4f1 {
        justify-content: center;
    }
    
    .c7139b59a {
        padding: 48px 24px;
        margin: 40px 16px;
    }
    
    .c7139b59a h2 {
        font-size: 1.8rem;
    }
    
    .cb3fd3503 img {
        height: 300px;
    }
}

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

/* ============ Utility Classes ============ */
.cacfc8756 { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary-color { color: var(--secondary); }
.mt-20 { margin-top: 20px; }
.c05cf4042 { 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;
}
