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

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

.c8192f88e {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

.cb6302cf6:hover::after,
.cb6302cf6.c9e9b2982::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.c5568d98f .cd3e32eea {
    color: var(--accent);
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c775e0feb .cac688d2d {
    color: var(--primary);
}

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

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

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

.cc4227790 {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

.c1a807927 .c7cedacbf:hover {
    gap: 12px;
}

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

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

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

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

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

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

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

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

.c24400883:hover .cab90e99a {
    transform: translateY(0);
    opacity: 1;
}

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

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

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

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

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

.c4828bc05 .cb96e97a7 {
    font-size: 2rem;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cdb3c0633 {
    margin-bottom: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c0a28a9be.cc13159c2 { left: 20px; }
.c0a28a9be.c14d0b245 { right: 20px; }

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

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

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

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

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

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

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

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

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

.c4ad8c986 .c8814ad8a a {
    color: var(--accent);
}

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

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

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

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

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

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

.ccf70480e.c9e9b2982 {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .cc2ff3e30 {
        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;
    }
    
    .cc2ff3e30.c9e9b2982 {
        right: 0;
    }
    
    .c74f715a4 {
        display: flex;
    }
    
    .c5568d98f {
        font-size: 2.2rem;
    }
    
    .cee9e6105 {
        font-size: 1rem;
    }
    
    .c961a1c74 {
        gap: 30px;
    }
    
    .cfc782cfb::before {
        left: 20px;
    }
    
    .c59e07a7b {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .c59e07a7b .cccbe7850 {
        left: 20px;
        transform: none;
    }
    
    .c59e07a7b .c76f0b6e0 {
        width: 100%;
    }
    
    .cbeaf2584 {
        grid-template-columns: 1fr;
    }
    
    .c74f1f6a1 {
        flex-direction: column;
        text-align: center;
    }
    
    .c1b481f8b {
        padding: 60px 0;
    }
    
    .c1131d033 {
        height: 300px;
    }
    
    .c1b90f4be img {
        height: 300px;
    }
    
    .cf4327487 {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .c8130795c {
        flex-direction: column;
        align-items: center;
    }
    
    .cbb30b542, .cdb450537 {
        width: 100%;
        justify-content: center;
    }
    
    .c56bf3ad9 {
        flex-direction: column;
    }
    
    .c56bf3ad9 input {
        min-width: auto;
    }
}

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

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

.c1587648c.show {
    display: block;
}

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

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