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

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

.c8c5a3411 {
    padding: 100px 0;
}

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

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

.c9dfbdba7 {
    text-align: center;
}

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

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

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

.ce6ee1e76 .c5502d891 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

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

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

.c6c43b7b1 a:hover,
.c6c43b7b1 a.ce860c646 {
    color: var(--color-text);
}

.c6c43b7b1 a:hover::after,
.c6c43b7b1 a.ce860c646::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c90c40475 {
    width: 100%;
}

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

.cf95bef8c {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cd69c9b43:hover,
.cd69c9b43.ce860c646 {
    opacity: 1;
}

.cd69c9b43 {
    opacity: 0.5;
}

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

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

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

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

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

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

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

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

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

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

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

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

.c96df919f:hover .cb3f63f4b img {
    transform: scale(1.05);
}

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

.c96df919f:hover .c5dc085fc {
    opacity: 1;
}

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

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

.cd5ad62c1 {
    padding: 24px;
}

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

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

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

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

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

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

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

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

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

.ca7f43ea7 {
    list-style: none;
}

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

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

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

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

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

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

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

.c86e1f765 {
    margin-bottom: 32px;
}

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

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

.c9a532c19,
.c46a8a333 {
    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);
}

.c9a532c19 input,
.c46a8a333 input {
    display: none;
}

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

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

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

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

.cedd429f7.cf229aafa {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .c003cd357 {
        display: none;
    }

    .c6e1a9f67 {
        display: flex;
    }

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

    .c0c46c545.ce860c646 {
        right: 0;
    }

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

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

    .c03c2b629 {
        gap: 30px;
    }

    .cdf2939e7 {
        font-size: 2rem;
    }

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

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

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

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

    .cedd429f7.cf229aafa {
        grid-template-columns: 1fr;
    }

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

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

    .c39f1589b {
        padding: 30px 20px;
    }

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

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

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

    .c4ceed833 {
        width: 100%;
    }

    .cb67682d2 {
        gap: 8px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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