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

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

.cee093eb2 {
    padding: 100px 0;
}

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

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

.c0a94ff50 {
    text-align: center;
}

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

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

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

.c621c7ee6 .cd39be462 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

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

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

.c7fcc8392 a:hover,
.c7fcc8392 a.ca0e6e37c {
    color: var(--color-text);
}

.c7fcc8392 a:hover::after,
.c7fcc8392 a.ca0e6e37c::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c85554c51 {
    width: 100%;
}

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

.c9658f0e3 {
    text-align: center;
}

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

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

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

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

.c73a4bca2 {
    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
   ============================================ */
.c1b990143 {
    padding: 30px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

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

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

.cddc45168 {
    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
   ============================================ */
.c4745fa8f {
    text-align: center;
    margin-bottom: 60px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cbb6faf4c:hover,
.cbb6faf4c.ca0e6e37c {
    opacity: 1;
}

.cbb6faf4c {
    opacity: 0.5;
}

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

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

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

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

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

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

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

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

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

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

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

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

.c895eb9d7:hover .c1e19153c img {
    transform: scale(1.05);
}

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

.c895eb9d7:hover .c3ed860bb {
    opacity: 1;
}

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

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

.cf4628e7c {
    padding: 24px;
}

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

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

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

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

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

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

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

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

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

.c5ecbd7c4 {
    list-style: none;
}

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

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

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

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

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

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

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

.c722a0627 {
    margin-bottom: 32px;
}

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

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

.c84d0ae0a,
.cafb872c6 {
    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);
}

.c84d0ae0a input,
.cafb872c6 input {
    display: none;
}

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

.c84d0ae0a:hover,
.cafb872c6: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
   ============================================ */
.c1806d3f2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

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

.c1fe1ca78.c9f9d852b {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

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

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

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

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

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

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

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

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

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

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

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

.cd13f0552 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .c6476c439 {
        display: none;
    }

    .c2f50d0d0 {
        display: flex;
    }

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

    .cc5290da3.ca0e6e37c {
        right: 0;
    }

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

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

    .c7d943e1f {
        gap: 30px;
    }

    .cac9f9e87 {
        font-size: 2rem;
    }

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

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

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

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

    .c1fe1ca78.c9f9d852b {
        grid-template-columns: 1fr;
    }

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

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

    .c0e00b4c6 {
        padding: 30px 20px;
    }

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

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

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

    .c917590aa {
        width: 100%;
    }

    .cc33b4c26 {
        gap: 8px;
    }

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

/* ============================================
   Page-specific Styles
   ============================================ */
.c42579186 {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cab64d70a::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%);
}

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

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

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

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

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

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

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

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

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

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

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

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