/* ============================================
   垂直农业植物工厂与水培种植技术自媒体 - 主样式表
   色彩体系：极客科技黑 + 荧光生长绿
   ============================================ */

/* CSS Variables */
:root {
  --primary: #0a0a0a;
  --primary-dark: #050505;
  --accent: #00ff88;
  --accent-dim: #00cc6a;
  --accent-glow: rgba(0, 255, 136, 0.3);
  --bg-dark: #0d0d0d;
  --bg-medium: #1a1a1a;
  --bg-light: #242424;
  --card-bg: rgba(30, 30, 30, 0.85);
  --card-border: rgba(0, 255, 136, 0.1);
  --text-primary: #f0f0f0;
  --text-secondary: #b0b0b0;
  --text-muted: #707070;
  --gradient-green: linear-gradient(135deg, #00ff88, #00cc6a);
  --gradient-dark: linear-gradient(180deg, #0a0a0a, #1a1a1a);
  --shadow-glow: 0 0 20px rgba(0, 255, 136, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* 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.8;
  overflow-x: hidden;
}

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

a:hover {
  color: #fff;
  text-shadow: 0 0 10px var(--accent-glow);
}

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

/* Loading Animation */
.caad95b31 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.c9a3bde36 {
  text-align: center;
}

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

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

.c11ea30d6::after {
  content: '';
  display: block;
  width: 50%;
  height: 100%;
  background: var(--gradient-green);
  animation: loading 1.2s infinite ease-in-out;
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

.c41a1cabf.c512b5679 {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
}

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

.c656bbf2d {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}

.c3f454887 {
  display: flex;
  list-style: none;
  gap: 36px;
}

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

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

.c3f454887 a:hover::after,
.c3f454887 a.ce6133a49::after {
  width: 100%;
}

.c3f454887 a:hover,
.c3f454887 a.ce6133a49 {
  color: var(--text-primary);
}

.c58e524c0 {
  padding: 10px 24px;
  background: var(--gradient-green);
  color: var(--primary) !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

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

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

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

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

.ca67d4bf9 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.05);
  animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

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

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

.cd9668f14 {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--accent);
  border-radius: 30px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.c2e0eff71 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.c2e0eff71 .cd835b2f0 {
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow);
}

.c222a57e2 {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.c7eabfb2c {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.c2ebcd8d2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.cafbce89e {
  background: var(--gradient-green);
  color: var(--primary);
}

.cafbce89e:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
  color: var(--primary);
}

.c5a29e242 {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.c5a29e242:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

/* Section Common */
.c6cb776f0 {
  padding: 100px 0;
}

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

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

.c8d686306 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.cc69d79a2 {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 20px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.cdb30ee63 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

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

/* Trust Bar */
.cd5524880 {
  padding: 60px 0;
  background: var(--bg-medium);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.c1d5dba58 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}

.cb4a0e1ee {
  text-align: center;
}

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

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

/* Services Grid */
.c7a716e22 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.c9c6af511 {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.c9c6af511:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

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

.c7d6acb00 {
  padding: 30px;
}

.c371ccef0 {
  width: 50px;
  height: 50px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

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

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

/* Cases Gallery */
.c06df617b {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

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

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

.c1957e0f1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.c19555c53:hover .c1957e0f1 {
  transform: translateY(0);
  opacity: 1;
}

.c1957e0f1 h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

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

.c1e767a61 {
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Pain Points */
.ccc12d065 {
  position: relative;
}

.ca301a1f4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.c818f7fcd {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.c818f7fcd img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.c474b0f97 {
  list-style: none;
}

.cebfd36f4 {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.cebfd36f4:hover {
  border-color: var(--accent);
  transform: translateX(8px);
}

.c429e65c0 {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}

.cebfd36f4 h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

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

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

.c27725f01::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dim));
  opacity: 0.3;
}

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

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

.c88d9dec5 h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

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

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

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

.c28ca96cb {
  min-width: 100%;
  position: relative;
}

.c28ca96cb img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.c76473f23 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.c5170359f {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 255, 136, 0.2);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--accent);
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 5;
}

.c5170359f:hover {
  background: var(--accent);
  color: var(--primary);
}

.c4c2ebefb { left: 20px; }
.cac884026 { right: 20px; }

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

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

.carousel-dot.ce6133a49 {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

/* Calculator Tool */
.ce34c23ca {
  background: var(--bg-medium);
}

.caa451041 {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 50px;
  backdrop-filter: blur(10px);
}

.c31e53649 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.c6339f0d6 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c6339f0d6.c1e40a9ca {
  grid-column: 1 / -1;
}

.c6339f0d6 label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.c6339f0d6 input,
.c6339f0d6 select,
.c6339f0d6 textarea {
  padding: 14px 18px;
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-main);
  transition: var(--transition);
}

.c6339f0d6 input:focus,
.c6339f0d6 select:focus,
.c6339f0d6 textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

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

.c5adfaab4 {
  margin-top: 30px;
  padding: 24px;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  display: none;
}

.c5adfaab4.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.c5adfaab4 h4 {
  color: var(--accent);
  margin-bottom: 12px;
}

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

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

.cf7e38440:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

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

.c4172e240 {
  padding: 24px;
}

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

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

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

/* CTA Section */
.c745ffc04 {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 0, 0, 0.9) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.c745ffc04::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.03) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

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

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

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

.cb43567f2 {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.c07a6862e {
  background: var(--primary-dark);
  padding: 80px 0 30px;
  border-top: 1px solid var(--card-border);
}

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

.c381e3442 p {
  color: var(--text-secondary);
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.c5e68e787 {
  list-style: none;
}

.c5e68e787 li {
  margin-bottom: 12px;
}

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

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

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

/* Scroll Animations */
.c067bca7a {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.c067bca7a.ce6133a49 {
  opacity: 1;
  transform: translateY(0);
}

/* Counter Animation */
.counter {
  display: inline-block;
}

/* Back to Top */
.c43b69b6a {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
}

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

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

/* Page Header (for sub pages) */
.ce3114dae {
  padding: 160px 0 80px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.ce3114dae::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.6));
}

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

.ce3114dae h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.c3de2dc8d {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.c3de2dc8d a {
  color: var(--accent);
}

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

.cdb0ebc37 {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}

.cda4b367e {
  width: 48px;
  height: 48px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cd46b0194 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cd46b0194 .cbbf49c8f {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Success Message */
.c777e09d8 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--card-bg);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(20px);
}

.c777e09d8.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.ce9e2812d {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.c777e09d8 h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.c777e09d8 p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.c10a69c51 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.c10a69c51.show {
  opacity: 1;
  visibility: visible;
}

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

.cb4d215ec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.c4a362906 {
  text-align: center;
  padding: 40px 30px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.c4a362906:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.ce89064b0 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .c7a716e22 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cea7c7e62 {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .ca301a1f4 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .c27725f01 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c27725f01::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .c3f454887 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 80px 30px;
    gap: 24px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--card-border);
  }
  
  .c3f454887.open {
    right: 0;
  }
  
  .c82ab7d3f {
    display: flex;
  }
  
  .c2e0eff71 {
    font-size: 2.2rem;
  }
  
  .c222a57e2 {
    font-size: 1rem;
  }
  
  .c6cb776f0 {
    padding: 60px 0;
  }
  
  .c8d686306 {
    padding: 0 20px;
  }
  
  .c1d5dba58 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .c7a716e22 {
    grid-template-columns: 1fr;
  }
  
  .c06df617b {
    grid-template-columns: 1fr;
  }
  
  .c4e5db15c {
    grid-template-columns: 1fr;
  }
  
  .cc25cd559 {
    grid-template-columns: 1fr;
  }
  
  .cd46b0194 .cbbf49c8f {
    grid-template-columns: 1fr;
  }
  
  .c31e53649 {
    grid-template-columns: 1fr;
  }
  
  .caa451041 {
    padding: 30px 20px;
  }
  
  .cea7c7e62 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .ccf511335 {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .c27725f01 {
    grid-template-columns: 1fr;
  }
  
  .cb4d215ec {
    grid-template-columns: 1fr;
  }
  
  .c28ca96cb img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .c7eabfb2c {
    flex-direction: column;
  }
  
  .c2ebcd8d2 {
    width: 100%;
    justify-content: center;
  }
  
  .c28cf7c18 {
    padding: 0 20px;
  }
}
