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

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

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

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

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

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

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

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

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

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

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

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

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

.c65df7737 a:hover::after,
.c65df7737 a.c17894597::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c069d7923:hover .c2d8755c9 {
    transform: translateY(0);
    opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ce95d055a { left: 16px; }
.ce1ed9563 { right: 16px; }

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

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

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

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

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

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

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

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

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

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

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

.c9c8f89c9.c7430971f {
    grid-column: 1 / -1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.caad9ce77 .c4c3b55bb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

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

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

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

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

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

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

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

.cd6e3560d:hover .c83874ff6 img {
    transform: scale(1.05);
}

.ce97e1cce {
    padding: 24px;
}

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

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

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

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

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

@media (max-width: 768px) {
    .c4f013b16 {
        display: flex;
    }
    
    .c65df7737 {
        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);
    }
    
    .c65df7737.c17894597 {
        right: 0;
    }
    
    .c65df7737 ul {
        flex-direction: column;
        gap: 24px;
    }
    
    .c2da11e6d h1 {
        font-size: 2rem;
    }
    
    .c4ac52c4b {
        font-size: 1rem;
    }
    
    .c073a1eff {
        padding: 60px 16px;
    }
    
    .c57fd24a6 {
        grid-template-columns: 1fr;
    }
    
    .c45cf94b1 {
        grid-template-columns: 1fr;
    }
    
    .c82a45930 {
        grid-template-columns: 1fr;
    }
    
    .cc4ac6a88 {
        grid-template-columns: 1fr;
    }
    
    .c3c2a67d1 {
        padding: 32px 20px;
    }
    
    .cef7b50a4 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cdd4fadee {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .ce5c5e562 {
        justify-content: center;
    }
    
    .c9407e935 {
        padding: 48px 24px;
        margin: 40px 16px;
    }
    
    .c9407e935 h2 {
        font-size: 1.8rem;
    }
    
    .cbe09cae0 img {
        height: 300px;
    }
}

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

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