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

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

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

.c9f7c5dab {
  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 */
.c04efe847 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}

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

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

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

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

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

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

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

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

.cfbb1f09a a:hover,
.cfbb1f09a a.c592e18e5 {
  color: var(--text-primary);
}

.cfbb1f09a a:hover::after,
.cfbb1f09a a.c592e18e5::after {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c7868c662:hover .ccb18ba70 {
  transform: translateY(0);
  opacity: 1;
}

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

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

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

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

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

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

.cca0fa958 {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c94aa7b3d ul {
  list-style: none;
}

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

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

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

.c080520ad {
  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 */
.ced5aa848 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

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

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

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

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

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

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

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

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

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

.ce3747d58 {
  padding: 25px;
}

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

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

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

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

.ce37eaabf {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cd190a86b {
  min-width: 100%;
}

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

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

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

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

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

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

.c0b807059.show {
  display: block;
}

.ce4277de9 {
  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) {
  .c7c730bce {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c89504015 {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .c579648e8 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ced5aa848 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ced5aa848::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .cfbb1f09a {
    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);
  }
  
  .cfbb1f09a.open {
    right: 0;
  }
  
  .cfbb1f09a ul {
    flex-direction: column;
    gap: 25px;
  }
  
  .cd18b44c1 {
    display: flex;
  }
  
  .ccf6acddc h1 {
    font-size: 2.2rem;
  }
  
  .cd874acaf {
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .c7c730bce,
  .cec356f98 {
    grid-template-columns: 1fr;
  }
  
  .cdb65c2ab {
    grid-template-columns: 1fr;
  }
  
  .c89504015 {
    grid-template-columns: 1fr;
  }
  
  .ced5aa848 {
    grid-template-columns: 1fr;
  }
  
  .c46ccafa6 {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .c6e527d11 {
    padding: 60px 0;
  }
  
  .c8b1f5bee {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .c01294bae {
    flex-direction: column;
  }
  
  .c573f3b48,
  .ccd7ab1f8 {
    justify-content: center;
  }
  
  .c63cf5fee {
    grid-template-columns: 1fr;
  }
}

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

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

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