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

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

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

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

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

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

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

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

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

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

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

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

.c8e899fbb a:hover,
.c8e899fbb a.c42c0c7d0 {
  color: var(--text-primary);
}

.c8e899fbb a:hover::after,
.c8e899fbb a.c42c0c7d0::after {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c923861d7:hover .c9704b3bc {
  transform: translateY(0);
  opacity: 1;
}

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

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

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

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

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

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

.cf8ae0fa1 {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c8f5f9dac ul {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.c0873ed1f {
  padding: 25px;
}

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

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

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

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

.ca075de31 {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cf350916a {
  min-width: 100%;
}

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

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

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

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

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

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

.c451f2569.show {
  display: block;
}

.c8ea16c44 {
  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) {
  .cb5e99417 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cade98712 {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .c2116d6df {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cde7cfeca {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cde7cfeca::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .c8e899fbb {
    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);
  }
  
  .c8e899fbb.open {
    right: 0;
  }
  
  .c8e899fbb ul {
    flex-direction: column;
    gap: 25px;
  }
  
  .cb3f5aa72 {
    display: flex;
  }
  
  .c548b5a06 h1 {
    font-size: 2.2rem;
  }
  
  .cd28c76d3 {
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .cb5e99417,
  .cb1c42bde {
    grid-template-columns: 1fr;
  }
  
  .cd22cec26 {
    grid-template-columns: 1fr;
  }
  
  .cade98712 {
    grid-template-columns: 1fr;
  }
  
  .cde7cfeca {
    grid-template-columns: 1fr;
  }
  
  .cf39dd780 {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .c4b0779da {
    padding: 60px 0;
  }
  
  .c9569d5d3 {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .c861ee0f6 {
    flex-direction: column;
  }
  
  .c2bfc53ba,
  .c11c92389 {
    justify-content: center;
  }
  
  .cabba4340 {
    grid-template-columns: 1fr;
  }
}

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

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

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