/* ============================================
   高定机械键盘客制化与轴体发售社区 - 主样式表
   色彩体系：阳极氧化灰 + 赛博朋克紫
   ============================================ */

/* CSS Variables */
:root {
    --primary: #6B6B7B;
    --primary-dark: #4A4A5A;
    --primary-light: #8E8E9E;
    --accent: #9B59B6;
    --accent-light: #BB77D6;
    --accent-dark: #7B3F96;
    --accent-glow: rgba(155, 89, 182, 0.4);
    --bg-dark: #0D0D12;
    --bg-medium: #151520;
    --bg-light: #1E1E2E;
    --bg-card: rgba(30, 30, 46, 0.7);
    --bg-card-hover: rgba(40, 40, 60, 0.85);
    --bg-frosted: rgba(255, 255, 255, 0.03);
    --text-primary: #F0F0F5;
    --text-secondary: #B0B0C0;
    --text-muted: #707080;
    --border-color: rgba(155, 89, 182, 0.2);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(155, 89, 182, 0.2);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', sans-serif;
    --max-width: 1400px;
}

/* 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.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

ul, ol {
    list-style: none;
}

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

.c7d17c69b.hidden {
    opacity: 0;
    visibility: hidden;
}

.c142b72b2 {
    text-align: center;
}

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

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

.cff3ba18c::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    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; }
}

/* Container */
.c7c9aad6c {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.c4ac3fbe6.ce7e99ff8 {
    background: rgba(13, 13, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
}

.ce74654a5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.c16b0cabd {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

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

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

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

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

.cb3851cd5 a:hover {
    color: var(--text-primary);
}

.cb3851cd5 a:hover::after {
    width: 100%;
}

.c3baa8efc {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    box-shadow: var(--shadow-glow);
}

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

.c3baa8efc:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(155, 89, 182, 0.4);
}

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

.cf84bd73b span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

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

.c5839e964 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.cd47eb12a:hover .c5839e964 {
    transform: scale(1);
}

.c9e7e928f {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 18, 0.9) 0%,
        rgba(13, 13, 18, 0.6) 50%,
        rgba(13, 13, 18, 0.8) 100%
    );
}

.c2520006f {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-left: 5%;
}

.cd2a65d57 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-light);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.cd2a65d57::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.ceb3a742e {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.ceb3a742e .c725ef7e3 {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c67b778e9 {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.8;
}

.c407f374b {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.cdba1ffce {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.c79f239b7 {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.c79f239b7:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(155, 89, 182, 0.5);
    color: #fff;
}

.cacec0070 {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.cacec0070:hover {
    background: var(--bg-card);
    border-color: var(--accent);
    color: var(--accent-light);
    transform: translateY(-3px);
}

/* Section Styles */
.c2b46ceec {
    padding: 100px 0;
    position: relative;
}

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

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

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

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

.c5616a8b4 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.c898656c8 {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Trust Section */
.c520320e6 {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.ccf667ade {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    opacity: 0.6;
    transition: var(--transition);
}

.ccf667ade:hover {
    opacity: 1;
}

.c81934f10 {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 20px;
}

/* Stats Counter */
.c09d6ea36 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.c6b0deae1 {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.c6b0deae1:hover {
    border-color: var(--border-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

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

/* Service Cards */
.cfc52381a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

.c77b8ac1f:hover {
    border-color: var(--border-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

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

.c378e5420 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.c77b8ac1f h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

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

/* Gallery / Cases */
.cb0e17348 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.c3d5bf7d3 {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

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

.c3d5bf7d3:hover .c2f823f4e {
    transform: translateY(0);
    opacity: 1;
}

.c2f823f4e h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

/* Filter Tabs */
.c3350b607 {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.c768dbc26 {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

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

.c3bfcdc19 {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.c3bfcdc19:hover {
    border-color: var(--border-color);
    transform: translateX(5px);
}

.cdbd5ee5d {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.c78033183 h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

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

/* Carousel / Swiper */
.ccf1e50b6 {
    overflow: hidden;
}

.c2c826067 {
    display: flex;
    gap: 24px;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.c2c826067:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.c45194430 {
    flex-shrink: 0;
    width: 350px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.c45194430:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow-glow);
}

.c45194430 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.cae3e5b8d {
    padding: 20px;
}

.cae3e5b8d h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

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

/* Process Steps */
.c2e7dbb2b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    counter-reset: step;
}

.c502d5681 {
    position: relative;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    counter-increment: step;
}

.c502d5681::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 15px;
}

.c502d5681:hover {
    border-color: var(--border-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.c502d5681 h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

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

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

.c06d0c382::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.3;
}

.c267fa9ca {
    position: relative;
    z-index: 2;
}

.ce918680f {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.c3fa6f538 {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Styles */
.cc1a45fc3 {
    margin-bottom: 20px;
}

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

.c1d2766e5 {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: var(--font-main);
}

.c1d2766e5:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

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

select.c1d2766e5 {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239B59B6' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* Quote Calculator */
.cfe76673c {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.c19041d9a {
    margin-top: 30px;
    padding: 20px;
    background: var(--bg-medium);
    border-radius: var(--radius-md);
    text-align: center;
    display: none;
}

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

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

/* Footer */
.c81852820 {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 30px;
}

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

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

.c2f29bb6f {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.ca7130f28 li {
    margin-bottom: 10px;
}

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

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

.c3bfb373f {
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

/* Parallax */
.c17e73d8a {
    transform: translateZ(0);
    will-change: transform;
}

/* News Cards */
.c54cd5711 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.c961adc6b {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.c961adc6b:hover {
    border-color: var(--border-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

.c88c96ebd {
    padding: 24px;
}

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

.c961adc6b h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

/* Page Hero (Inner Pages) */
.c26bbe4c7 {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
}

.c1485d21c {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.cb82352a2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(13,13,18,0.8) 100%);
}

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

.c3f43e339 h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

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

/* Breadcrumb */
.ccc87af62 {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}

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

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

/* Detail Page */
.cbddf3b09 {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.cbddf3b09 h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cbddf3b09 p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.cbddf3b09 img {
    border-radius: var(--radius-md);
    margin: 30px 0;
}

/* Thank You Page */
.c13688bc7 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cd30e4c5f {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .c09d6ea36 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c9dfa438c {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c9cabbdd5 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cb3851cd5 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-medium);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px;
        gap: 20px;
        transition: var(--transition);
        border-left: 1px solid var(--border-subtle);
    }
    
    .cb3851cd5.cda34e8ff {
        right: 0;
    }
    
    .cf84bd73b {
        display: flex;
    }
    
    .c2520006f {
        padding: 0 20px;
        text-align: center;
    }
    
    .c407f374b {
        justify-content: center;
    }
    
    .c09d6ea36 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .c6b0deae1 {
        padding: 25px 15px;
    }
    
    .c8bd0f4ce {
        font-size: 2rem;
    }
    
    .c9dfa438c {
        grid-template-columns: 1fr;
    }
    
    .c3bfb373f {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .cb0e17348 {
        grid-template-columns: 1fr;
    }
    
    .c2b46ceec {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .cd47eb12a {
        min-height: 600px;
    }
    
    .cdba1ffce {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .cfc52381a {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.c6c06603a { text-align: center; }
.text-accent { color: var(--accent); }
.cdbc42665 { margin-top: 20px; }
.ca9a920cf { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* Back to Top */
.c4ad2771f {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-glow);
}

.c4ad2771f.visible {
    opacity: 1;
    visibility: visible;
}

.c4ad2771f:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(155, 89, 182, 0.5);
}
