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

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

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

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

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

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

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

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

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

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

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

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

.c9d4318c3 a:hover,
.c9d4318c3 a.c9b89d72f {
  color: var(--text-primary);
}

.c9d4318c3 a:hover::after,
.c9d4318c3 a.c9b89d72f::after {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c472b1459:hover .c7814c9df {
  transform: translateY(0);
  opacity: 1;
}

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

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

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

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

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

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

.c9688cf14 {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c71f60c17 ul {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.c12e909f3 {
  padding: 25px;
}

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

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

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

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

.cacad70d9 {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c574b3bb6 {
  min-width: 100%;
}

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

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

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

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

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

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

.c090e15a8.show {
  display: block;
}

.c4c63b501 {
  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) {
  .ce81a9953 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c505046a0 {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .cbfdc878a {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cfbb4e731 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cfbb4e731::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .c9d4318c3 {
    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);
  }
  
  .c9d4318c3.open {
    right: 0;
  }
  
  .c9d4318c3 ul {
    flex-direction: column;
    gap: 25px;
  }
  
  .cd44867f8 {
    display: flex;
  }
  
  .c1093da32 h1 {
    font-size: 2.2rem;
  }
  
  .c30063b5d {
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .ce81a9953,
  .cec209a1c {
    grid-template-columns: 1fr;
  }
  
  .c6b666878 {
    grid-template-columns: 1fr;
  }
  
  .c505046a0 {
    grid-template-columns: 1fr;
  }
  
  .cfbb4e731 {
    grid-template-columns: 1fr;
  }
  
  .c08acee2b {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .c51a12cef {
    padding: 60px 0;
  }
  
  .c3ba6d18a {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .c056ab596 {
    flex-direction: column;
  }
  
  .c650dd025,
  .c08e1b9bf {
    justify-content: center;
  }
  
  .cd961b72d {
    grid-template-columns: 1fr;
  }
}

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

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

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