/* ============================================
   {SITE_TITLE} - 古法兵器锻造与甲胄复原文化传媒
   主样式表
   色彩体系：淬火寒芒银 + 高炉烈焰红
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #C0C8D4;       /* 淬火寒芒银 */
    --color-primary-dark: #8A9BAD;
    --color-primary-light: #E8ECF0;
    --color-accent: #C13B2A;        /* 高炉烈焰红 */
    --color-accent-light: #E85A4A;
    --color-accent-dark: #8B2A1E;
    --color-bg-dark: #0D0D0F;
    --color-bg-section: #141418;
    --color-bg-card: rgba(255, 255, 255, 0.03);
    --color-bg-card-hover: rgba(255, 255, 255, 0.06);
    --color-text: #E8E8EC;
    --color-text-muted: #9A9AA8;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-glass: rgba(255, 255, 255, 0.04);
    --font-primary: 'PingFang SC', 'Microsoft YaHei', -apple-system, sans-serif;
    --font-display: 'PingFang SC', 'STSong', serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--color-accent-light);
}

ul {
    list-style: none;
}

.c32433816 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.c3914e22f {
    padding: 100px 0;
}

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

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

.c416d1809 {
    text-align: center;
}

.c96cdae9b {
    width: 4px;
    height: 80px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
    margin: 0 auto 20px;
    animation: swordGlow 1.5s ease-in-out infinite;
    border-radius: 2px;
}

.c33b9e741 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-primary);
    letter-spacing: 4px;
}

@keyframes swordGlow {
    0%, 100% { box-shadow: 0 0 10px var(--color-primary), 0 0 20px rgba(192, 200, 212, 0.3); transform: scaleY(1); }
    50% { box-shadow: 0 0 20px var(--color-accent), 0 0 40px rgba(193, 59, 42, 0.4); transform: scaleY(1.1); }
}

/* ============================================
   Header
   ============================================ */
.c0d5a82c8 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.c0d5a82c8.c3590833f {
    background: rgba(13, 13, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.c0d5a82c8 .c32433816 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c16281f99 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary) !important;
    letter-spacing: 2px;
}

.c7a353eb1 {
    display: flex;
    gap: 32px;
}

.c7a353eb1 a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
}

.c7a353eb1 a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.c7a353eb1 a:hover,
.c7a353eb1 a.cd796de38 {
    color: var(--color-text);
}

.c7a353eb1 a:hover::after,
.c7a353eb1 a.cd796de38::after {
    width: 100%;
}

.c2a69b7d2 {
    display: inline-block;
    padding: 10px 24px;
    background: var(--color-accent);
    color: #fff !important;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.c2a69b7d2:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(193, 59, 42, 0.4);
}

.c58b0738a {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.c58b0738a span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

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

.ce6d704eb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 0;
}

.ce6d704eb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ce3a3ac62 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 15, 0.4) 0%,
        rgba(13, 13, 15, 0.6) 50%,
        rgba(13, 13, 15, 0.9) 100%
    );
    z-index: 1;
}

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

.c7e1758cd {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary), var(--color-text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c16baa2e2 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cee72902c {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.c7d100efa {
    display: inline-block;
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.cb3c5c520 {
    background: var(--color-accent);
    color: #fff;
}

.cb3c5c520:hover {
    background: var(--color-accent-light);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(193, 59, 42, 0.4);
}

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

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

.c4458583e {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-border);
    padding: 12px 32px;
}

.c4458583e:hover {
    border-color: var(--color-primary);
    background: rgba(192, 200, 212, 0.05);
    color: var(--color-primary-light);
}

.c76abcf4c {
    width: 100%;
}

.c0c9367c0 {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.ca3cf7006 {
    text-align: center;
}

.c5a565580 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-light);
    display: inline;
}

.c269fdf60 {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.ce829ab70 {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.c9b4c412b {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.c09ece6c2 {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(45deg);
    margin: 8px auto 0;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(8px); }
}

/* ============================================
   Trust Section
   ============================================ */
.ccd43b2d7 {
    padding: 30px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.ce6e0618a {
    overflow: hidden;
    position: relative;
}

.cf2fd10fa {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.c45002931 {
    flex-shrink: 0;
    padding: 0 40px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    border-right: 1px solid var(--color-border);
    line-height: 1;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   Section Headers
   ============================================ */
.caef8f905 {
    text-align: center;
    margin-bottom: 60px;
}

.c3a9ee2a0 {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(193, 59, 42, 0.1);
    color: var(--color-accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 16px;
    border: 1px solid rgba(193, 59, 42, 0.2);
}

.ccb199497 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
}

.cf425b93d {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.c30cc0e69 {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   Services Grid
   ============================================ */
.ca55af959 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ccfbf09f8 {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.ccfbf09f8:hover {
    background: var(--color-bg-card-hover);
    border-color: rgba(193, 59, 42, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.c8fe42dfe {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: var(--color-accent);
}

.c8fe42dfe svg {
    width: 100%;
    height: 100%;
}

.ccfbf09f8 h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.ccfbf09f8 p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.c26c0aac0 {
    font-size: 0.85rem;
    color: var(--color-accent) !important;
    font-weight: 500;
}

.c26c0aac0:hover {
    color: var(--color-accent-light) !important;
}

/* ============================================
   Process Timeline
   ============================================ */
.cb529d91f {
    background: var(--color-bg-section);
}

.c0c24e9c3 {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.c0c24e9c3::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.c1ab5cf14 {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
    cursor: pointer;
    transition: var(--transition);
}

.c1ab5cf14:hover,
.c1ab5cf14.cd796de38 {
    opacity: 1;
}

.c1ab5cf14 {
    opacity: 0.5;
}

.c8af260c8 {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-bg-dark);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-text-muted);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.c1ab5cf14.cd796de38 .c8af260c8,
.c1ab5cf14:hover .c8af260c8 {
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 0 20px rgba(193, 59, 42, 0.3);
}

.c6b313a7c h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.c6b313a7c p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
   Cases Grid
   ============================================ */
.cd7a135d6 {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.c944a42ab {
    padding: 8px 24px;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text-muted);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.c944a42ab:hover,
.c944a42ab.cd796de38 {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(193, 59, 42, 0.08);
}

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

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

.cd554bead:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(193, 59, 42, 0.3);
}

.cffdb9068 {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.cffdb9068 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.cd554bead:hover .cffdb9068 img {
    transform: scale(1.05);
}

.c23b49064 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 15, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.cd554bead:hover .c23b49064 {
    opacity: 1;
}

.c40d9eec4 {
    padding: 10px 24px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary) !important;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.c40d9eec4:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark) !important;
}

.c0a474dcd {
    padding: 24px;
}

.c0a474dcd h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

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

.c23eae6ee {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    padding: 32px;
}

.c3fd78db9 {
    background: rgba(139, 42, 30, 0.05);
    border-color: rgba(139, 42, 30, 0.2);
}

.c5cfd47ee {
    background: rgba(192, 200, 212, 0.03);
    border-color: rgba(192, 200, 212, 0.15);
}

.c41721d26 {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(193, 59, 42, 0.15);
    color: var(--color-accent);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cbeec8828 {
    background: rgba(192, 200, 212, 0.1);
    color: var(--color-primary);
}

.c23eae6ee img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.cfcec3a46 {
    list-style: none;
}

.cfcec3a46 li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
}

.cfcec3a46 li:last-child {
    border-bottom: none;
}

.cfcec3a46 li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.c8d3ffcc0 li::before {
    content: '✓';
    color: #4CAF50;
}

/* ============================================
   Calculator Section
   ============================================ */
.cbbf5a95f {
    background: var(--color-bg-section);
}

.c28434128 {
    max-width: 700px;
    margin: 0 auto;
}

.c8d243e50 {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    backdrop-filter: blur(10px);
}

.c61a918aa {
    margin-bottom: 32px;
}

.c61a918aa label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--color-text);
}

.c8e895caa,
.c8649d5a3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.c3ca264ce,
.cd5e107b4 {
    display: block;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.c3ca264ce input,
.cd5e107b4 input {
    display: none;
}

.c3ca264ce:has(input:checked),
.cd5e107b4:has(input:checked) {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(193, 59, 42, 0.08);
}

.c3ca264ce:hover,
.cd5e107b4:hover {
    border-color: var(--color-primary-dark);
    color: var(--color-text);
}

input[type="tel"],
input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: var(--font-primary);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(193, 59, 42, 0.1);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239A9AA8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

select option {
    background: var(--color-bg-dark);
    color: var(--color-text);
}

/* ============================================
   News Section
   ============================================ */
.cb9648606 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.c269efce3:hover {
    border-color: rgba(193, 59, 42, 0.3);
    transform: translateY(-3px);
}

.c269efce3.c7f355599 {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.c7677e3b3 {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.c7677e3b3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc350741d {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cffa2afae {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(193, 59, 42, 0.1);
    color: var(--color-accent);
    border-radius: 4px;
    font-size: 0.75rem;
    margin-bottom: 12px;
    width: fit-content;
}

.cc350741d h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.cc350741d h3 a {
    color: var(--color-text);
}

.cc350741d h3 a:hover {
    color: var(--color-accent);
}

.cc350741d p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.cc350741d time {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.7;
}

/* ============================================
   CTA Section
   ============================================ */
.ccdbb792a {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(193, 59, 42, 0.08), rgba(13, 13, 15, 0.95));
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.c5f1012f5 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cc8b4242b h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cc8b4242b p {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.caf7a1765 form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ============================================
   Footer
   ============================================ */
.c93d4b9d7 {
    padding: 80px 0 30px;
    background: var(--color-bg-section);
    border-top: 1px solid var(--color-border);
}

.c548a7fb8 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.ccfc708ae {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.c60b21c1b p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.c463af91e h4,
.c1e72d9bf h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

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

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

.c463af91e ul li a:hover {
    color: var(--color-accent);
}

.c1e72d9bf p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.cebe0eb5b {
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.cebe0eb5b p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.cebe0eb5b a {
    color: var(--color-text-muted);
}

.cebe0eb5b a:hover {
    color: var(--color-accent);
}

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

    .c548a7fb8 {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .c3914e22f {
        padding: 60px 0;
    }

    .c2a69b7d2 {
        display: none;
    }

    .c58b0738a {
        display: flex;
    }

    .cf953e8c2 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(13, 13, 15, 0.98);
        backdrop-filter: blur(20px);
        padding: 80px 30px 30px;
        transition: var(--transition);
        border-left: 1px solid var(--color-border);
    }

    .cf953e8c2.cd796de38 {
        right: 0;
    }

    .c7a353eb1 {
        flex-direction: column;
        gap: 20px;
    }

    .c7a353eb1 a {
        font-size: 1.1rem;
    }

    .c0c9367c0 {
        gap: 30px;
    }

    .c5a565580 {
        font-size: 2rem;
    }

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

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

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

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

    .c269efce3.c7f355599 {
        grid-template-columns: 1fr;
    }

    .c5f1012f5 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .c8d243e50 {
        padding: 30px 20px;
    }

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

@media (max-width: 480px) {
    .c0c9367c0 {
        flex-direction: column;
        gap: 20px;
    }

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

    .c7d100efa {
        width: 100%;
    }

    .cd7a135d6 {
        gap: 8px;
    }

    .c944a42ab {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* ============================================
   Page-specific Styles
   ============================================ */
.cc4a04cab {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, var(--color-bg-section), var(--color-bg-dark));
    border-bottom: 1px solid var(--color-border);
}

.cc4a04cab h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--color-text);
}

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

.c90b03e00 {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.c90b03e00 a {
    color: var(--color-text-muted);
}

.c90b03e00 a:hover {
    color: var(--color-accent);
}

/* About page */
.c037cdb6a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.c1d399c16 h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.c1d399c16 p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.cfd9f7e49 {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cfd9f7e49 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Timeline */
.caa0997e7 {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.caa0997e7::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
    transform: translateX(-50%);
}

.cb944f443 {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.cb944f443:nth-child(odd) {
    justify-content: flex-start;
    padding-right: 55%;
}

.cb944f443:nth-child(even) {
    justify-content: flex-end;
    padding-left: 55%;
}

.ce2e6c462 {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.ce2e6c462 h3 {
    font-size: 1rem;
    color: var(--color-accent);
    margin-bottom: 8px;
}

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

/* Contact Form */
.c29e1662a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.cf12e3684 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ce95e6bd7 {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.c05adcd39 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(193, 59, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-accent);
}

.c5b39e759 {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.c5b39e759 form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

/* Landing pages */
.c6723557b {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.c6723557b::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(193, 59, 42, 0.08), transparent 70%);
}

.c6f271665 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 60px 0;
}

.c2981783f {
    text-align: center;
    padding: 40px 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.c2981783f h3 {
    margin: 16px 0 8px;
    font-size: 1.1rem;
}

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

/* Success page */
.c3df6fbfa {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.cba6bd5b1 h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #4CAF50;
}

.cba6bd5b1 p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .c037cdb6a {
        grid-template-columns: 1fr;
    }

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

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

    .caa0997e7::before {
        left: 20px;
    }

    .cb944f443:nth-child(odd),
    .cb944f443:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
}
