/* ============================================
   {SITE_TITLE} - 全局样式表
   色彩体系：极地冰川白 + 极限跳伞橙
   ============================================ */

/* CSS Variables */
:root {
    --primary: #F0F8FF;          /* 极地冰川白 */
    --accent: #FF6B35;           /* 极限跳伞橙 */
    --accent-dark: #E55A2B;      /* 橙色深色 */
    --accent-light: #FF8C5A;     /* 橙色浅色 */
    --bg-dark: #0A0E1A;          /* 深色背景 */
    --bg-medium: #141B2D;        /* 中深背景 */
    --bg-light: #F5F7FA;         /* 浅色背景 */
    --card-bg: rgba(255, 255, 255, 0.08);  /* 磨砂卡片 */
    --card-bg-light: rgba(255, 255, 255, 0.95);
    --text-dark: #1A1A2E;        /* 深色文字 */
    --text-light: #E8E8E8;       /* 浅色文字 */
    --text-muted: #8892A4;       /* 次要文字 */
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 10px 40px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-main: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
    font-family: var(--font-main);
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

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

.c7d1574f0 {
    text-align: center;
}

.c5823ba8f {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.c2753d04d {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.c2753d04d::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    animation: loading 1.2s ease-in-out infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

.c99cf3eca.c33479602 {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.caeffd997 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.caeffd997 span {
    color: var(--accent);
}

.ca37941f4 {
    display: flex;
    align-items: center;
    gap: 36px;
}

.c8da81558 {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

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

.c8da81558:hover::after,
.c8da81558.c0826d477::after {
    width: 100%;
}

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

.c6450bc2a {
    background: var(--accent);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.c6450bc2a:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cd36d2c6f {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.cd36d2c6f span {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

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

.ce2b5dba3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.0); }
}

.c5f98f9ab {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 26, 0.7) 0%,
        rgba(10, 14, 26, 0.4) 50%,
        rgba(10, 14, 26, 0.6) 100%
    );
}

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

.c56d2dd20 {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.5);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.c2d04d625 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.c2d04d625 .c083555a0 {
    color: var(--accent);
    position: relative;
}

.c502a66a3 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.c6618e0b3 {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.c9ebcbcee {
    background: var(--accent);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.c9ebcbcee:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.cdaf127d1 {
    background: transparent;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cdaf127d1:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.cc238f589 {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.cc238f589 span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.cc238f589 span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollDot {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

/* ============================================
   Section Common Styles
   ============================================ */
.cbd4bcbae {
    padding: 100px 0;
}

.c9f8d27e1 {
    background: var(--bg-dark);
    color: var(--text-light);
}

.ce08a87b5 {
    background: var(--bg-medium);
    color: var(--text-light);
}

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

.caf516df8 {
    text-align: center;
    margin-bottom: 60px;
}

.c2a87c148 {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

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

.c9f8d27e1 .c33098eba {
    color: var(--primary);
}

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

/* ============================================
   Trust Section (信任背书)
   ============================================ */
.c425e67b1 {
    background: var(--bg-dark);
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.c707ebf55 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.c7054c1e7 {
    text-align: center;
}

.ccea4d213 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.c4513f8e7 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================
   Services Section
   ============================================ */
.c7a0574fa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.c4c73cab6 {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.c4c73cab6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.c4c73cab6:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.1);
}

.cf0ca46df {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.c4c73cab6 h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

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

.c4c73cab6 .c0274a0fc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 16px;
    font-size: 0.9rem;
}

.c4c73cab6 .c0274a0fc:hover {
    gap: 12px;
}

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

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

.cd2a7e5a8.c0826d477,
.cd2a7e5a8:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.c790e6562 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

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

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

.c566d38f2:hover img {
    transform: scale(1.08);
}

.ccf8d8861 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(10, 14, 26, 0.9));
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.c566d38f2:hover .ccf8d8861 {
    transform: translateY(0);
    opacity: 1;
}

.ccf8d8861 h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

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

/* ============================================
   Pain Points Section
   ============================================ */
.c97a518b2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ca7dfa299 {
    background: var(--card-bg-light);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.ca7dfa299:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.ca7dfa299 .c986f9714 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.ca7dfa299 h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.ca7dfa299 .cfe8f224d {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(231, 76, 60, 0.08);
    border-radius: 8px;
}

.ca7dfa299 .ce0d720b2 {
    color: #27ae60;
    font-size: 0.9rem;
    padding: 8px 12px;
    background: rgba(39, 174, 96, 0.08);
    border-radius: 8px;
}

/* ============================================
   CTA Section
   ============================================ */
.cd1f5526e {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cd1f5526e::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.c4e30a0eb {
    text-align: center;
    position: relative;
    z-index: 2;
}

.c4e30a0eb h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 16px;
}

.c4e30a0eb p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cf812030f {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.cf812030f input {
    flex: 1;
    min-width: 200px;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.cf812030f input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

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

/* ============================================
   Footer
   ============================================ */
.c4008b60e {
    background: var(--bg-dark);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

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

.c860642b6 h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

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

.c109b36f6 h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.c109b36f6 a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: var(--transition);
}

.c109b36f6 a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.c167ac861 {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

/* ============================================
   Process Module (互动式服务流程)
   ============================================ */
.c2431ef94 {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.c2431ef94::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    transform: translateX(-50%);
}

.ca5f229fc {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.ca5f229fc:nth-child(even) {
    flex-direction: row-reverse;
}

.ca5f229fc .cbf234e92 {
    width: 45%;
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.ca5f229fc .cbf234e92:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.ca5f229fc .c4f4ed4e0 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
}

.cbf234e92 h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

/* ============================================
   Quote Calculator (智能报价工具)
   ============================================ */
.c9489c531 {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
}

.c0e93b314 {
    margin-bottom: 24px;
}

.c0e93b314 label {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.c0e93b314 select,
.c0e93b314 input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.c0e93b314 select:focus,
.c0e93b314 input:focus {
    border-color: var(--accent);
}

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

.cba3f9c07 {
    text-align: center;
    padding: 30px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--radius);
    margin-top: 30px;
}

.cba3f9c07 .c168be268 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.cba3f9c07 .c3b3440e6 {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 8px;
}

/* ============================================
   Carousel (特色展示轮播)
   ============================================ */
.c6e671f79 {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.cc9e16a04 {
    display: flex;
    transition: transform 0.6s ease;
}

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

.c98dfe04c img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.c98dfe04c .c66b91bc0 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(10, 14, 26, 0.9));
}

.c98dfe04c .c66b91bc0 h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.c98dfe04c .c66b91bc0 p {
    color: var(--text-muted);
}

.c94874064 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.8);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
}

.c94874064:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.c94874064.c69b15a85 { left: 20px; }
.c94874064.c6500a4c1 { right: 20px; }

.cd39d145a {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.cd39d145a .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.cd39d145a .dot.c0826d477 {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   Page Headers (内页顶部)
   ============================================ */
.ce1fb8a2b {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ce1fb8a2b img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ce1fb8a2b .c1e5025e9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.7);
}

.c7b719a8a {
    position: relative;
    z-index: 2;
    text-align: center;
}

.c7b719a8a h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 12px;
}

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

.c7b719a8a .c77914d77 a {
    color: var(--accent);
}

/* ============================================
   Forms
   ============================================ */
.c3cf40e7d {
    margin-bottom: 20px;
}

.c3cf40e7d label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.c3cf40e7d input,
.c3cf40e7d textarea,
.c3cf40e7d select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-main);
}

.c3cf40e7d input:focus,
.c3cf40e7d textarea:focus,
.c3cf40e7d select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

/* ============================================
   Animations (Scroll Reveal)
   ============================================ */
.c3acfab1e {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.c3acfab1e.c0826d477 {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.c0826d477 {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.c0826d477 {
    opacity: 1;
    transform: translateX(0);
}

/* Counter Animation */
.counter {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .ce87795e4 {
        grid-template-columns: 1fr 1fr;
    }
    
    .c790e6562 {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .ca37941f4 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 80px 30px;
        transition: var(--transition);
        gap: 24px;
    }
    
    .ca37941f4.c0826d477 {
        right: 0;
    }
    
    .cd36d2c6f {
        display: flex;
    }
    
    .c2d04d625 {
        font-size: 2.2rem;
    }
    
    .c502a66a3 {
        font-size: 1rem;
    }
    
    .c707ebf55 {
        gap: 30px;
    }
    
    .c2431ef94::before {
        left: 20px;
    }
    
    .ca5f229fc {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .ca5f229fc .c4f4ed4e0 {
        left: 20px;
        transform: none;
    }
    
    .ca5f229fc .cbf234e92 {
        width: 100%;
    }
    
    .ce87795e4 {
        grid-template-columns: 1fr;
    }
    
    .c167ac861 {
        flex-direction: column;
        text-align: center;
    }
    
    .cbd4bcbae {
        padding: 60px 0;
    }
    
    .ce1fb8a2b {
        height: 300px;
    }
    
    .c98dfe04c img {
        height: 300px;
    }
    
    .c9489c531 {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .c6618e0b3 {
        flex-direction: column;
        align-items: center;
    }
    
    .c9ebcbcee, .cdaf127d1 {
        width: 100%;
        justify-content: center;
    }
    
    .cf812030f {
        flex-direction: column;
    }
    
    .cf812030f input {
        min-width: auto;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.c4d715ffb { text-align: center; }
.text-accent { color: var(--accent); }
.c1651c13d { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.c1cce7a6a { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Success Message */
.cc98d9026 {
    display: none;
    text-align: center;
    padding: 40px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.cc98d9026.show {
    display: block;
}

.cc98d9026 h3 {
    color: #27ae60;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cc98d9026 p {
    color: var(--text-muted);
}
