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

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

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

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

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

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

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

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

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

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

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

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

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

.cd30183bb a:hover::after,
.cd30183bb a.cf07d9730::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cb63780f0:hover .ca23a26b9 {
    transform: translateY(0);
    opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cb1ef711f { left: 16px; }
.c9fcdfdfc { right: 16px; }

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

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

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

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

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

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

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

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

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

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

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

.c1be1bcec.cf2b7954d {
    grid-column: 1 / -1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cbe756439 .ce49491aa {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

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

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

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

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

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

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

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

.c40f1508b:hover .ced785fe0 img {
    transform: scale(1.05);
}

.c953637d9 {
    padding: 24px;
}

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

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

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

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

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

@media (max-width: 768px) {
    .c1b2ed13d {
        display: flex;
    }
    
    .cd30183bb {
        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);
    }
    
    .cd30183bb.cf07d9730 {
        right: 0;
    }
    
    .cd30183bb ul {
        flex-direction: column;
        gap: 24px;
    }
    
    .c66b7565d h1 {
        font-size: 2rem;
    }
    
    .cbc34c898 {
        font-size: 1rem;
    }
    
    .c178dd8ee {
        padding: 60px 16px;
    }
    
    .c52be97ec {
        grid-template-columns: 1fr;
    }
    
    .c731be657 {
        grid-template-columns: 1fr;
    }
    
    .cb5c0dbee {
        grid-template-columns: 1fr;
    }
    
    .c9aa743e5 {
        grid-template-columns: 1fr;
    }
    
    .c50506443 {
        padding: 32px 20px;
    }
    
    .c34b05ac8 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .c6a0f8738 {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .ca1eb21e2 {
        justify-content: center;
    }
    
    .c6d0947b6 {
        padding: 48px 24px;
        margin: 40px 16px;
    }
    
    .c6d0947b6 h2 {
        font-size: 1.8rem;
    }
    
    .c7010abf3 img {
        height: 300px;
    }
}

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

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