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

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

.cdfc2ff88 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.cb464ce7b:hover::after,
.cb464ce7b.c35f04070::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.c89336710 .c3157452b {
    color: var(--accent);
    position: relative;
}

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

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

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

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

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

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

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

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

.c94ddd3f2 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
   ============================================ */
.c4e951547 {
    padding: 100px 0;
}

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

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

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

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

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

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

.c3c408b63 .c36b0b720 {
    color: var(--primary);
}

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

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

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

.c88acf038 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

.cda4ffb7c .c53440add:hover {
    gap: 12px;
}

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

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

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

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

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

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

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

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

.cbf09b236:hover .c36610f75 {
    transform: translateY(0);
    opacity: 1;
}

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

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

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

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

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

.cdd1e8293 .c8e93f5da {
    font-size: 2rem;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c6651325e {
    margin-bottom: 24px;
}

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

.c6651325e select,
.c6651325e 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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ccba0a809.c3ac4a815 { left: 20px; }
.ccba0a809.c9601388a { right: 20px; }

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

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

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

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

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

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

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

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

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

.cd93442cc .ca6277a45 a {
    color: var(--accent);
}

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

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

.cdd5d4c54 input,
.cdd5d4c54 textarea,
.cdd5d4c54 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);
}

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

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

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

.cad5439d1.c35f04070 {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .cde1dd4fa {
        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;
    }
    
    .cde1dd4fa.c35f04070 {
        right: 0;
    }
    
    .c60d3c994 {
        display: flex;
    }
    
    .c89336710 {
        font-size: 2.2rem;
    }
    
    .c141a5d18 {
        font-size: 1rem;
    }
    
    .c84ba4a49 {
        gap: 30px;
    }
    
    .cf1a3b074::before {
        left: 20px;
    }
    
    .cc584b48f {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .cc584b48f .c66ec8084 {
        left: 20px;
        transform: none;
    }
    
    .cc584b48f .c18296a6d {
        width: 100%;
    }
    
    .c75b97f64 {
        grid-template-columns: 1fr;
    }
    
    .c2cf718b6 {
        flex-direction: column;
        text-align: center;
    }
    
    .c4e951547 {
        padding: 60px 0;
    }
    
    .ccfac5297 {
        height: 300px;
    }
    
    .c8fd0e7a4 img {
        height: 300px;
    }
    
    .c9162fb79 {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .c66210071 {
        flex-direction: column;
        align-items: center;
    }
    
    .c80a919e3, .c4c28e626 {
        width: 100%;
        justify-content: center;
    }
    
    .cfc4b633a {
        flex-direction: column;
    }
    
    .cfc4b633a input {
        min-width: auto;
    }
}

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

/* Success Message */
.cd0217773 {
    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);
}

.cd0217773.show {
    display: block;
}

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

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