/* ============================================
   深海沉船打捞与水下考古纪录片传媒 - 主样式表
   色彩体系：深海幽灵蓝 + 潜水探照灯黄
   ============================================ */

/* CSS Variables */
:root {
    --primary: #0a2e5c;
    --primary-light: #1a4a8a;
    --primary-dark: #061d3a;
    --accent: #f0b429;
    --accent-light: #f5c84c;
    --accent-dark: #d49b1f;
    --bg-dark: #040d1a;
    --bg-medium: #0c1f3d;
    --bg-light: #132d54;
    --card-bg: rgba(10, 46, 92, 0.6);
    --card-border: rgba(240, 180, 41, 0.2);
    --text-primary: #e8f0ff;
    --text-secondary: #a8c4e0;
    --text-muted: #6b8db5;
    --white: #ffffff;
    --gradient-hero: linear-gradient(135deg, rgba(4, 13, 26, 0.85), rgba(10, 46, 92, 0.7));
    --gradient-card: linear-gradient(145deg, rgba(19, 45, 84, 0.8), rgba(10, 46, 92, 0.4));
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(240, 180, 41, 0.3);
    --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 & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

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

/* Loading Animation */
.cdaba9950 {
    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;
}

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

.c75a61315 {
    text-align: center;
}

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

.c2be9b4c2 {
    width: 200px;
    height: 3px;
    background: var(--bg-medium);
    border-radius: 3px;
    overflow: hidden;
}

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

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

.cf47d6b64.scrolled {
    background: rgba(4, 13, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.c00840912 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

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

.c9ccf21dc {
    display: flex;
    align-items: center;
    gap: 35px;
}

.c9ccf21dc a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

.c9ccf21dc a:hover,
.c9ccf21dc a.c24e25ba8 {
    color: var(--white);
}

.c9ccf21dc a:hover::after,
.c9ccf21dc a.c24e25ba8::after {
    width: 100%;
}

.ce172e116 {
    background: var(--accent);
    color: var(--primary-dark) !important;
    padding: 10px 24px !important;
    border-radius: 30px;
    font-weight: 600 !important;
}

.ce172e116::after {
    display: none !important;
}

.ce172e116:hover {
    background: var(--accent-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Mobile Menu */
.c64db881b {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.c64db881b span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

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

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

.c34c1e6ce {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.cd751e487 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.c592483e0 {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(240, 180, 41, 0.4);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.c592483e0:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.c592483e0:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; }
.c592483e0:nth-child(3) { left: 45%; top: 30%; animation-delay: 2s; }
.c592483e0:nth-child(4) { left: 65%; top: 70%; animation-delay: 3s; }
.c592483e0:nth-child(5) { left: 80%; top: 40%; animation-delay: 4s; }
.c592483e0:nth-child(6) { left: 90%; top: 80%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

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

.c4675299a {
    display: inline-block;
    background: rgba(240, 180, 41, 0.15);
    border: 1px solid rgba(240, 180, 41, 0.3);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.c82b851de {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c89776225 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cda4577b9 {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.c60b680e7:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: var(--primary-dark);
}

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

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

/* Section Common */
.c0922dba8 {
    padding: 100px 0;
    position: relative;
}

.ca3580ff1 {
    background: var(--bg-dark);
}

.c87efab01 {
    background: var(--bg-medium);
}

.c31b8fd40 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

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

.c71101e85 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.cfafcb1da {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Trust Section */
.c33d733f6 {
    padding: 60px 0;
    background: var(--bg-medium);
    border-top: 1px solid rgba(240, 180, 41, 0.1);
    border-bottom: 1px solid rgba(240, 180, 41, 0.1);
}

.c4d00fd92 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.c09c9411c {
    text-align: center;
}

.c72ab178a {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.c94349450 {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Services Section */
.c1cf2ac8c {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cf22ac6e5 {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

.cf22ac6e5:hover {
    transform: translateY(-10px);
    border-color: rgba(240, 180, 41, 0.4);
    box-shadow: var(--shadow-lg);
}

.cf22ac6e5:hover::before {
    opacity: 1;
}

.c5e41675f {
    width: 60px;
    height: 60px;
    background: rgba(240, 180, 41, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.cf22ac6e5 h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

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

.cf22ac6e5 .c5c9e4ace {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
}

.cf22ac6e5 .c5c9e4ace:hover {
    gap: 10px;
}

/* Cases Gallery */
.ca6bdddf5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.c07986988 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.c07986988:hover img {
    transform: scale(1.1);
}

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

.c07986988:hover .c674d32a6 {
    transform: translateY(0);
    opacity: 1;
}

.c674d32a6 h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
}

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

.cea77874e {
    display: inline-block;
    background: rgba(240, 180, 41, 0.2);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

/* Pain Points Section */
.c69f75ea4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.c5f7013dc {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    margin-bottom: 20px;
    transition: var(--transition);
}

.c5f7013dc:hover {
    border-color: rgba(240, 180, 41, 0.4);
    transform: translateX(5px);
}

.c0d843d16 {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(240, 180, 41, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

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

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

.cdd70d368 {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.cdd70d368 h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cdd70d368 p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* CTA Section */
.ca8223879 {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ca8223879::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(240, 180, 41, 0.05), transparent 70%);
    animation: rotateBg 30s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cb6f8f302 {
    position: relative;
    z-index: 1;
}

.c3cc9bf53 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.c697c224f {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.c69f08a5c {
    background: var(--bg-dark);
    border-top: 1px solid rgba(240, 180, 41, 0.1);
    padding: 60px 0 30px;
}

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

.cb17c2979 p {
    color: var(--text-secondary);
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.8;
}

.c48a3aa93 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.c78315bbe {
    list-style: none;
}

.c78315bbe li {
    margin-bottom: 12px;
}

.c78315bbe a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.c8b0f3d61 {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

/* Process Module */
.ca6d94e81 {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.ca6d94e81::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light), var(--accent));
}

.c13d64150 {
    position: relative;
    text-align: center;
    flex: 1;
    padding: 0 15px;
}

.c04a999f4 {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 15px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-glow);
}

.c13d64150 h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
}

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

/* Quote Calculator */
.c0cccc087 {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 50px;
    backdrop-filter: blur(10px);
}

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

.c302b452b {
    display: flex;
    flex-direction: column;
}

.c302b452b label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.c302b452b input,
.c302b452b select,
.c302b452b textarea {
    background: rgba(4, 13, 26, 0.6);
    border: 1px solid rgba(240, 180, 41, 0.2);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: var(--font-main);
}

.c302b452b input:focus,
.c302b452b select:focus,
.c302b452b textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(240, 180, 41, 0.1);
}

.c302b452b.c3e18a36e {
    grid-column: 1 / -1;
}

.ce4f1b85d {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
}

/* News Cards */
.c97dd07fc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.c504b8656:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.c504b8656 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.c6d7d48ea {
    padding: 25px;
}

.c11041422 {
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.c504b8656 h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.5;
}

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

/* Page Banner */
.cd600a214 {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cd600a214::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.cd5f79ae7 {
    position: relative;
    z-index: 1;
}

.cd600a214 h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.cd600a214 p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.ccc0342f7 {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ccc0342f7 a {
    color: var(--text-secondary);
}

.ccc0342f7 span {
    margin: 0 8px;
}

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

.c1bbdedc7 {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.cdb1ed8e0 {
    width: 50px;
    height: 50px;
    background: rgba(240, 180, 41, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.c1bbdedc7 h4 {
    color: var(--white);
    margin-bottom: 5px;
}

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

/* Animations */
.ceac68700 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ceac68700.visible {
    opacity: 1;
    transform: translateY(0);
}

.cf795cc73 {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cf795cc73.visible {
    opacity: 1;
    transform: translateX(0);
}

.c168e053e {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.c168e053e.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Counter Animation */
.c179e8e3b {
    display: inline-block;
}

/* Carousel */
.caf17fdc0 {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.c667fcc55 {
    display: flex;
    transition: transform 0.5s ease;
}

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

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

.cc5e8dd88 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.cfac17faa {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.cfac17faa.c24e25ba8 {
    background: var(--accent);
    transform: scale(1.3);
}

.c0e989779 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(4, 13, 26, 0.7);
    border: 1px solid rgba(240, 180, 41, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.c0e989779:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.c0e989779.cb6204d29 { left: 20px; }
.c0e989779.cddd81013 { right: 20px; }

/* Success Message */
.c29c96008 {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--gradient-card);
    border: 1px solid rgba(240, 180, 41, 0.3);
    border-radius: var(--radius-lg);
}

.c29c96008.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.cb6e4c2c2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.c29c96008 h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.c29c96008 p {
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .c1cf2ac8c {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c6075e9ca {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c82b851de {
        font-size: 2.8rem;
    }
    
    .c4d00fd92 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .c9ccf21dc {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 80px 40px;
        gap: 25px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .c9ccf21dc.open {
        right: 0;
    }
    
    .c64db881b {
        display: flex;
    }
    
    .c82b851de {
        font-size: 2rem;
    }
    
    .c89776225 {
        font-size: 1rem;
    }
    
    .c0922dba8 {
        padding: 60px 0;
    }
    
    .c31b8fd40 {
        padding: 0 20px;
    }
    
    .c71101e85 {
        font-size: 1.8rem;
    }
    
    .c1cf2ac8c,
    .ca6bdddf5,
    .c97dd07fc {
        grid-template-columns: 1fr;
    }
    
    .c69f75ea4 {
        grid-template-columns: 1fr;
    }
    
    .c5aaeb107 {
        grid-template-columns: 1fr;
    }
    
    .c475ea99d {
        grid-template-columns: 1fr;
    }
    
    .c6075e9ca {
        grid-template-columns: 1fr;
    }
    
    .ca6d94e81 {
        flex-direction: column;
        gap: 30px;
    }
    
    .ca6d94e81::before {
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
    }
    
    .cda4577b9 {
        flex-direction: column;
        align-items: center;
    }
    
    .c4d00fd92 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .c0cccc087 {
        padding: 30px 20px;
    }
    
    .cd600a214 {
        height: 300px;
    }
    
    .cd600a214 h1 {
        font-size: 2rem;
    }
    
    .c90131235 img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .c82b851de {
        font-size: 1.6rem;
    }
    
    .c4d00fd92 {
        grid-template-columns: 1fr 1fr;
    }
    
    .c72ab178a {
        font-size: 1.8rem;
    }
}
