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

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

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

.c92bb71e5 {
    text-align: center;
}

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

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

.cbcd3ec55::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 */
.c337ad20d {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cd7ba5e33:hover .cb74392a9 {
    transform: scale(1);
}

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

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

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

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

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

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

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

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

/* Buttons */
.c00d85490 {
    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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.cb80970c5:hover {
    opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cbcfe1fca:hover .c9f999b95 {
    transform: translateY(0);
    opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c3c7ee34e {
    padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

select.c3e3e2d42 {
    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 */
.c78e85635 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ccc55380e {
    padding: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c22a87ae1 {
    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) {
    .c65b0f450 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ccc9ef99a {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cb95ed0a9 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .c17869e9f {
        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);
    }
    
    .c17869e9f.cd083bc95 {
        right: 0;
    }
    
    .cd84a999a {
        display: flex;
    }
    
    .cf0f4508e {
        padding: 0 20px;
        text-align: center;
    }
    
    .ca4e27fd2 {
        justify-content: center;
    }
    
    .c65b0f450 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .cfa89d9d0 {
        padding: 25px 15px;
    }
    
    .c33a7bdeb {
        font-size: 2rem;
    }
    
    .ccc9ef99a {
        grid-template-columns: 1fr;
    }
    
    .cda874d28 {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .c8074d392 {
        grid-template-columns: 1fr;
    }
    
    .c9f126db6 {
        padding: 60px 0;
    }
}

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

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

/* Back to Top */
.c7d32c4f2 {
    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);
}

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

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