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

/* CSS Variables */
:root {
  --primary: #6B6B7B;
  --primary-dark: #4A4A5A;
  --accent: #9B59B6;
  --accent-light: #BB77D4;
  --accent-glow: rgba(155, 89, 182, 0.3);
  --bg-dark: #0D0D12;
  --bg-section: #141420;
  --bg-card: rgba(30, 30, 50, 0.7);
  --bg-card-hover: rgba(40, 40, 65, 0.85);
  --text-primary: #F0F0F5;
  --text-secondary: #A0A0B0;
  --text-muted: #6B6B80;
  --border-color: rgba(155, 89, 182, 0.2);
  --gradient-purple: linear-gradient(135deg, #9B59B6, #6C3483);
  --gradient-dark: linear-gradient(180deg, #0D0D12, #141420);
  --shadow-glow: 0 0 30px rgba(155, 89, 182, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

/* Loading Animation */
.c4bfc3e54 {
  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.5s ease, visibility 0.5s ease;
}

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

.c71551b03 {
  width: 80px;
  height: 80px;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px var(--accent)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 25px var(--accent)); }
}

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

.c02ec6d02.c0e021444 {
  background: rgba(13, 13, 18, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}

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

.cfe13e4d4 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cfe13e4d4 img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.c4b40b56b {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.cb6805ae4 ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

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

.cb6805ae4 a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-purple);
  transition: width 0.3s ease;
}

.cb6805ae4 a:hover,
.cb6805ae4 a.c85167945 {
  color: var(--text-primary);
}

.cb6805ae4 a:hover::after,
.cb6805ae4 a.c85167945::after {
  width: 100%;
}

.c663ea886 {
  padding: 10px 24px;
  background: var(--gradient-purple);
  color: #fff !important;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-glow);
}

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

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

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

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

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

.cc067fab7 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13,13,18,0.85) 0%, rgba(13,13,18,0.4) 50%, rgba(13,13,18,0.7) 100%);
}

.cbd0bee0a {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.cacc736f3 {
  display: inline-block;
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 25px;
  font-size: 0.85rem;
  color: var(--accent-light);
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.ce8a954d6 h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
}

.ce8a954d6 h1 .c8caa3740 {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.c11e97dd6 {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.c36ff80a3 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cb6ddfcf0 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-purple);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-glow);
}

.cb6ddfcf0:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(155, 89, 182, 0.45);
  color: #fff;
}

.cebefc111 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.cebefc111:hover {
  border-color: var(--accent);
  background: var(--bg-card);
  color: var(--text-primary);
}

/* Hero Stats */
.cff25fc58 {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(155, 89, 182, 0.15);
}

.c7be138c2 .ce8d2bcd9 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-light);
}

.c7be138c2 .c1c725660 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Sections Common */
.cef08dc74 {
  padding: 100px 0;
}

.cb34e5f59 {
  background: var(--bg-section);
}

.c6218d1a7 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

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

.ca66262ff {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--accent-light);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.c33ad2ee0 h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 15px;
}

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

/* Trust Section */
.cde237e64 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 40px 0;
  opacity: 0.6;
}

.cde237e64 span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

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

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

.c6f047529::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-purple);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.c6f047529:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
}

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

.cee9e4207 {
  width: 56px;
  height: 56px;
  background: var(--gradient-purple);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.c6f047529 h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

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

/* Cases Gallery */
.c35f8e4b6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

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

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

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

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

.c15e0ba51:hover .cafa9303e {
  transform: translateY(0);
  opacity: 1;
}

.cafa9303e h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.cafa9303e span {
  font-size: 0.8rem;
  color: var(--accent-light);
}

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

.c1ca9761e {
  padding: 8px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.c1ca9761e.c85167945,
.c1ca9761e:hover {
  background: var(--gradient-purple);
  border-color: var(--accent);
  color: #fff;
}

/* Pain Points Section */
.cb30646af {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cfc07a81d {
  list-style: none;
}

.cfc07a81d li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(155, 89, 182, 0.1);
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.cfc07a81d .c6e0724f6 {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(231, 76, 60, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E74C3C;
  font-size: 0.9rem;
}

.cfc07a81d .cbd21c419 {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(155, 89, 182, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 0.9rem;
}

.cfc07a81d h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

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

/* CTA Section */
.cf37d5cad {
  background: var(--gradient-purple);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cf37d5cad::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cf37d5cad h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 15px;
  position: relative;
}

.cf37d5cad p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 35px;
  position: relative;
}

.cf37d5cad .c12bd6d79 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 35px;
  background: #fff;
  color: var(--accent);
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
}

.cf37d5cad .c12bd6d79:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  color: var(--accent);
}

/* Footer */
.ce8e4935b {
  background: #0A0A0F;
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-color);
}

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

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

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

.cefc452bf ul {
  list-style: none;
}

.cefc452bf ul li {
  margin-bottom: 12px;
}

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

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

.cc6a0386c {
  padding-top: 30px;
  border-top: 1px solid rgba(155, 89, 182, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Service Process */
.cd740ebaa {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.cd740ebaa::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  width: 70%;
  height: 2px;
  background: var(--border-color);
}

.c25abc7f9 {
  text-align: center;
  position: relative;
}

.cc9a1dd48 {
  width: 60px;
  height: 60px;
  background: var(--gradient-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.c25abc7f9 h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

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

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

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

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

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

.c08a6ed81 {
  padding: 25px;
}

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

.c49863f96 h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

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

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

.c5ceecf1a {
  margin-bottom: 20px;
}

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

.c5ceecf1a input,
.c5ceecf1a select,
.c5ceecf1a textarea {
  width: 100%;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition);
}

.c5ceecf1a input:focus,
.c5ceecf1a select:focus,
.c5ceecf1a textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

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

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

.c41460260 h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  text-align: center;
}

.cd3dde352 {
  text-align: center;
  padding: 25px;
  background: rgba(155, 89, 182, 0.1);
  border-radius: var(--radius-sm);
  margin-top: 25px;
}

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

.cd3dde352 .cd0bedac8 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Page Banner */
.cd2a4a614 {
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.cd2a4a614 .cb2d02157 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13,13,18,0.7), rgba(13,13,18,0.9));
}

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

.cd2a4a614 h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 15px;
}

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

/* Breadcrumb */
.cc87876b2 {
  padding: 15px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cc87876b2 a {
  color: var(--text-muted);
}

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

/* Counter Animation */
.c94b279ad {
  font-variant-numeric: tabular-nums;
}

/* Parallax */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

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

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

.c96961f89 {
  min-width: 100%;
}

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

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

.carousel-dot.c85167945 {
  background: var(--accent);
  transform: scale(1.3);
}

/* Landing Page Specific */
.landing-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.c9cc544b7 {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.c297fce70 {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 15px 20px;
  min-width: 80px;
}

.c297fce70 .c5e1f48cd {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
}

.c297fce70 .cbf662001 {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Success Message */
.cab4a33fa {
  display: none;
  text-align: center;
  padding: 60px 30px;
}

.cab4a33fa.show {
  display: block;
}

.ce27f38d7 {
  width: 80px;
  height: 80px;
  background: var(--gradient-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .c35f8e4b6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c047743bb {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .cb30646af {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cd740ebaa {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cd740ebaa::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .cb6805ae4 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(13, 13, 18, 0.98);
    backdrop-filter: blur(20px);
    padding: 80px 30px;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border-color);
  }
  
  .cb6805ae4.open {
    right: 0;
  }
  
  .cb6805ae4 ul {
    flex-direction: column;
    gap: 25px;
  }
  
  .c2bacc508 {
    display: flex;
  }
  
  .ce8a954d6 h1 {
    font-size: 2.2rem;
  }
  
  .cff25fc58 {
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .c35f8e4b6,
  .cda7cc57d {
    grid-template-columns: 1fr;
  }
  
  .c339ac1a0 {
    grid-template-columns: 1fr;
  }
  
  .c047743bb {
    grid-template-columns: 1fr;
  }
  
  .cd740ebaa {
    grid-template-columns: 1fr;
  }
  
  .c9cc544b7 {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cef08dc74 {
    padding: 60px 0;
  }
  
  .cd2a4a614 {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .c36ff80a3 {
    flex-direction: column;
  }
  
  .cb6ddfcf0,
  .cebefc111 {
    justify-content: center;
  }
  
  .ce3a94f24 {
    grid-template-columns: 1fr;
  }
}

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

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

/* Glassmorphism utility */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-color);
}
