/* ========================================
   微短剧剧本交易与短剧版权分发平台 - 主样式表
   色彩体系：流量爆款红 + 影视场记黑
   ======================================== */

/* CSS Variables */
:root {
    --primary-red: #E63946;
    --primary-red-dark: #C62828;
    --primary-red-light: #FF6B6B;
    --secondary-black: #1A1A2E;
    --secondary-dark: #16213E;
    --bg-dark: #0F0F1A;
    --bg-light: #1A1A2E;
    --bg-section-alt: #12121F;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-bg-hover: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #F5F5F5;
    --text-secondary: #B0B0C0;
    --text-muted: #6C6C80;
    --glass-bg: rgba(26, 26, 46, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-red: linear-gradient(135deg, #E63946, #FF6B6B);
    --gradient-dark: linear-gradient(180deg, #0F0F1A, #1A1A2E);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 16px 48px rgba(230, 57, 70, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

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

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

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

.c10d9d03f.loaded {
    opacity: 0;
    visibility: hidden;
}

.cd1e81153 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    animation: pulse-logo 1.5s ease-in-out infinite;
}

@keyframes pulse-logo {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* Navigation */
.cb2a81c4a {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.cb2a81c4a.c77ed8f34 {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.6rem 0;
}

.c6d3415a3 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c7dda5f96 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-red);
    letter-spacing: -0.5px;
}

.c4eb162b4 {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.c599309a4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

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

.c599309a4:hover, .c599309a4.c61035694 {
    color: var(--text-primary);
}

.c599309a4:hover::after, .c599309a4.c61035694::after {
    width: 100%;
}

.cc94a1921 {
    padding: 0.6rem 1.5rem;
    background: var(--gradient-red);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cc94a1921:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

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

.c31273256 span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

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

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

.c12ef7f14 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 26, 0.4) 0%, rgba(15, 15, 26, 0.85) 100%);
    z-index: 1;
}

.c7868746a {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.c91b4117c {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(230, 57, 70, 0.15);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--primary-red-light);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.cb9c16180 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.cb9c16180 .c81671021 {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c08d0b82d {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.ca7e171ad {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* Buttons */
.cb2e9c84f {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-red);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.cb2e9c84f:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 57, 70, 0.4);
}

.c1210125c {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.c1210125c:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

/* Section Common */
.cdbb5502e {
    padding: 6rem 0;
    position: relative;
}

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

.cb4176b39 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ca70807a4 {
    text-align: center;
    margin-bottom: 4rem;
}

.c8b61b727 {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-red-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cfbd1daf6 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

/* Trust Section */
.cf8343143 {
    padding: 3rem 0;
    border-bottom: 1px solid var(--card-border);
}

.c6bde7063 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.c3eb03107 {
    text-align: center;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.c3eb03107:hover {
    opacity: 1;
}

.c3eb03107 span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Stats Counter */
.c51f788a3 {
    padding: 4rem 0;
    background: var(--bg-section-alt);
}

.ce4fa4161 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.c1021c172 {
    text-align: center;
    padding: 2rem;
}

.ce3b1513f {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.cf1742b35 {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Service Cards */
.cbf27d530 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.cfa336782 {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cfa336782::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cfa336782:hover {
    background: var(--card-bg-hover);
    border-color: rgba(230, 57, 70, 0.2);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

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

.cf4ed0551 {
    width: 60px;
    height: 60px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.cfa336782 h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* Cases Gallery */
.cd4a00f8c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

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

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

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

.ce95a45ac:hover .c328d626e {
    transform: translateY(0);
    opacity: 1;
}

.c328d626e h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

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

.c904563e1 {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: rgba(230, 57, 70, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--primary-red-light);
    margin-bottom: 0.5rem;
}

/* Pain Points Section */
.c9f7fedb3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.c7a9c38ab {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.c7a9c38ab:hover {
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateX(5px);
}

.c8d8596e7 {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.cfcf63379 h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-red-light);
}

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

.ca68723dd {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--card-border);
    font-size: 0.85rem;
    color: var(--text-primary);
}

.ca68723dd strong {
    color: var(--primary-red);
}

/* Process Section */
.cbb69cbe4 {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

.cbb69cbe4::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 2px;
    background: var(--card-border);
}

.c621d63ef {
    text-align: center;
    position: relative;
    flex: 1;
    padding: 0 1rem;
}

.c05e62e25 {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.c621d63ef h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

/* News Section */
.ce2ee75ac {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.c2e9a5e21:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 57, 70, 0.2);
}

.c1b0e8968 {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.c0757fc41 {
    padding: 1.5rem;
}

.ced7bd0f3 {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.c2e9a5e21 h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

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

/* CTA Section */
.c5f0c9566 {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(15, 15, 26, 0.9));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.c5f0c9566::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.05) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.c5528aa23 {
    position: relative;
    z-index: 2;
}

.c51dd6c72 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

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

/* Contact Form */
.c8cc3a305 {
    max-width: 600px;
    margin: 0 auto;
}

.cd1a454e5 {
    margin-bottom: 1.5rem;
}

.cd1a454e5 label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.c691c16cd {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
    font-family: inherit;
}

.c691c16cd:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.c691c16cd::placeholder {
    color: var(--text-muted);
}

textarea.c691c16cd {
    min-height: 120px;
    resize: vertical;
}

.c8c6d8249 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Footer */
.ca56eb144 {
    background: var(--secondary-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--card-border);
}

.c6c02759c {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.ced583c7e {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.c641d9b27 li {
    margin-bottom: 0.8rem;
}

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

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

.c6b09a280 {
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

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

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

.c6782e596 img {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: cover;
}

.cc887dbb1 {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.cde051660 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cde051660.c61035694 {
    background: var(--primary-red);
    width: 30px;
    border-radius: 6px;
}

/* Quote Calculator */
.c9f645e4a {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
}

.c59ffe35d {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cc1cdb32c {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(230, 57, 70, 0.05);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: var(--border-radius);
    text-align: center;
    display: none;
}

.cc1cdb32c.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.cca8ed037 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
}

select.c691c16cd {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23B0B0C0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.c309a16fc {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Parallax */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    will-change: transform;
}

/* Page Header (for inner pages) */
.c3a4696bf {
    padding: 10rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cdde49fb6 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.c19564e22 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-dark), rgba(15, 15, 26, 0.9));
}

.c975aa7d5 {
    position: relative;
    z-index: 2;
}

.c3a4696bf h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.c68aedaf3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

/* Success Page */
.c54814a6c {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.c69338cea {
    width: 100px;
    height: 100px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
}

/* Filter Tabs */
.cb41deb66 {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.c879c59c1 {
    padding: 0.6rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
}

.c879c59c1:hover, .c879c59c1.c61035694 {
    background: rgba(230, 57, 70, 0.1);
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ce4fa4161 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cd4a00f8c {
        grid-template-columns: repeat(2, 1fr);
    }

    .c6c02759c {
        grid-template-columns: 1fr 1fr;
    }

    .c9f7fedb3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .c4eb162b4 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid var(--card-border);
    }

    .c4eb162b4.c61035694 {
        right: 0;
    }

    .c31273256 {
        display: flex;
    }

    .cb9c16180 {
        font-size: 2.2rem;
    }

    .c08d0b82d {
        font-size: 1rem;
    }

    .ce4fa4161 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .ce3b1513f {
        font-size: 2rem;
    }

    .cbf27d530 {
        grid-template-columns: 1fr;
    }

    .cd4a00f8c {
        grid-template-columns: 1fr;
    }

    .ce2ee75ac {
        grid-template-columns: 1fr;
    }

    .cbb69cbe4 {
        flex-direction: column;
        gap: 2rem;
    }

    .cbb69cbe4::before {
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
    }

    .c6c02759c {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .c8c6d8249 {
        grid-template-columns: 1fr;
    }

    .c59ffe35d {
        grid-template-columns: 1fr;
    }

    .ca7e171ad {
        flex-direction: column;
        align-items: center;
    }

    .cdbb5502e {
        padding: 4rem 0;
    }

    .cb4176b39 {
        padding: 0 1.2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .cb9c16180 {
        font-size: 1.8rem;
    }

    .cfbd1daf6 {
        font-size: 1.6rem;
    }

    .c6bde7063 {
        gap: 1.5rem;
    }
}

/* Utility Classes */
.ca6bd5db7 { text-align: center; }
.text-red { color: var(--primary-red); }
.ce2d2f52e { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none; }
