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

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

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

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

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

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

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

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

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

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

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

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

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

.c78486954 a:hover::after,
.c78486954 a.c397f17f2::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ca3afe679:hover .c4e78e658 {
    transform: translateY(0);
    opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c35258d69 { left: 16px; }
.c736fbf1b { right: 16px; }

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

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

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

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

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

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

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

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

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

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

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

.cede7b784.c88738f5b {
    grid-column: 1 / -1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cf39996d0 .c535dd91f {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

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

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

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

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

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

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

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

.ce03b535d:hover .cda8ea184 img {
    transform: scale(1.05);
}

.cd2f5976b {
    padding: 24px;
}

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

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

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

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

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

@media (max-width: 768px) {
    .c8d66ceb3 {
        display: flex;
    }
    
    .c78486954 {
        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);
    }
    
    .c78486954.c397f17f2 {
        right: 0;
    }
    
    .c78486954 ul {
        flex-direction: column;
        gap: 24px;
    }
    
    .cfe083d7f h1 {
        font-size: 2rem;
    }
    
    .c510cc886 {
        font-size: 1rem;
    }
    
    .c1e6f9891 {
        padding: 60px 16px;
    }
    
    .cd6351a31 {
        grid-template-columns: 1fr;
    }
    
    .c7fb3c89e {
        grid-template-columns: 1fr;
    }
    
    .c84755b73 {
        grid-template-columns: 1fr;
    }
    
    .caf3a663c {
        grid-template-columns: 1fr;
    }
    
    .c4375ec47 {
        padding: 32px 20px;
    }
    
    .c8f7a9a4b {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .c87e59441 {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .cf1eced61 {
        justify-content: center;
    }
    
    .c69c68c19 {
        padding: 48px 24px;
        margin: 40px 16px;
    }
    
    .c69c68c19 h2 {
        font-size: 1.8rem;
    }
    
    .cf4bee485 img {
        height: 300px;
    }
}

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

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