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

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

.cb8c9ad9e {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.c43252cba:hover::after,
.c43252cba.cb76d76db::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.c56092155 .cb2f006a2 {
    color: var(--accent);
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ce209cfa2 .c6af5694d {
    color: var(--primary);
}

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

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

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

.cc4928779 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

.cf9ba76b8 .c85bd8fbd:hover {
    gap: 12px;
}

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

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

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

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

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

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

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

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

.c31303ef1:hover .ce88b94e4 {
    transform: translateY(0);
    opacity: 1;
}

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

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

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

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

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

.c701a4ff5 .c7a153143 {
    font-size: 2rem;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c28baf3d1 {
    margin-bottom: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c659642b6.cdd353deb { left: 20px; }
.c659642b6.c3521f281 { right: 20px; }

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

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

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

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

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

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

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

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

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

.cd84edb0c .cf5b03bb7 a {
    color: var(--accent);
}

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

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

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

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

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

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

.c39da6d2a.cb76d76db {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .c02197fab {
        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;
    }
    
    .c02197fab.cb76d76db {
        right: 0;
    }
    
    .c0a7200e5 {
        display: flex;
    }
    
    .c56092155 {
        font-size: 2.2rem;
    }
    
    .cb6dc00df {
        font-size: 1rem;
    }
    
    .c0e7b2445 {
        gap: 30px;
    }
    
    .c9ebaf8c6::before {
        left: 20px;
    }
    
    .c0a1db9fa {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .c0a1db9fa .cf1529e7d {
        left: 20px;
        transform: none;
    }
    
    .c0a1db9fa .c0e08fc27 {
        width: 100%;
    }
    
    .c5f42d83e {
        grid-template-columns: 1fr;
    }
    
    .ce3fc8dc4 {
        flex-direction: column;
        text-align: center;
    }
    
    .c6f0fd5c4 {
        padding: 60px 0;
    }
    
    .c38bc3587 {
        height: 300px;
    }
    
    .cd61cb4be img {
        height: 300px;
    }
    
    .cb74f5382 {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .ce0ebe4fa {
        flex-direction: column;
        align-items: center;
    }
    
    .c56078650, .c6370c3be {
        width: 100%;
        justify-content: center;
    }
    
    .cc840077d {
        flex-direction: column;
    }
    
    .cc840077d input {
        min-width: auto;
    }
}

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

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

.cbfc66861.show {
    display: block;
}

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

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