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

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

.c3dfdb38c {
    padding: 100px 0;
}

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

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

.cab5cb379 {
    text-align: center;
}

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

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

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

.cc3151980 .c5e4e1d35 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

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

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

.cedd5ff22 a:hover,
.cedd5ff22 a.cae015cfa {
    color: var(--color-text);
}

.cedd5ff22 a:hover::after,
.cedd5ff22 a.cae015cfa::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c60be1de0 {
    width: 100%;
}

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

.c5ff69f1a {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cf1db3305:hover,
.cf1db3305.cae015cfa {
    opacity: 1;
}

.cf1db3305 {
    opacity: 0.5;
}

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

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

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

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

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

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

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

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

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

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

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

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

.c5f863e31:hover .c9d3b5572 img {
    transform: scale(1.05);
}

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

.c5f863e31:hover .ca48bae40 {
    opacity: 1;
}

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

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

.cd1eb43f2 {
    padding: 24px;
}

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

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

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

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

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

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

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

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

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

.cd203f56e {
    list-style: none;
}

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

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

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

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

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

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

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

.c0f8af2e7 {
    margin-bottom: 32px;
}

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

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

.c92f615ea,
.c970da77b {
    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);
}

.c92f615ea input,
.c970da77b input {
    display: none;
}

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

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

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

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

.c608ad767.c61ecd30d {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .ca5aeb1d9 {
        display: none;
    }

    .c201d92cf {
        display: flex;
    }

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

    .c803b3ebf.cae015cfa {
        right: 0;
    }

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

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

    .c345f8775 {
        gap: 30px;
    }

    .c5bd35d8f {
        font-size: 2rem;
    }

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

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

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

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

    .c608ad767.c61ecd30d {
        grid-template-columns: 1fr;
    }

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

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

    .cba849362 {
        padding: 30px 20px;
    }

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

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

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

    .c98b4b397 {
        width: 100%;
    }

    .ccbb71bf4 {
        gap: 8px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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