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

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

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

.c8f08fadc {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.c16fd309b a:hover::after,
.c16fd309b a.caad8eddc::after {
  width: 100%;
}

.c16fd309b a:hover,
.c16fd309b a.caad8eddc {
  color: var(--text-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

.c879dca6c {
  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 */
.c1309eba8 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cd21ea587 {
  text-align: center;
}

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

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

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

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

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

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

.c9261c720 {
  padding: 30px;
}

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

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

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

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

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

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

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

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

.cd617578d:hover .c8dc90d6e {
  transform: translateY(0);
  opacity: 1;
}

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

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

.c2e4eab20 {
  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 */
.cdaa0ca3b {
  position: relative;
}

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

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

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

.cd533f1f0 {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cef4ae581 { left: 20px; }
.ce993e3db { right: 20px; }

.ca5b66ff5 {
  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.caad8eddc {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

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

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

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

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

.c77e96ae7.c90cfb8ed {
  grid-column: 1 / -1;
}

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

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

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

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

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

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

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

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

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

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

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

.c2fee4482 {
  padding: 24px;
}

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

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

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

/* CTA Section */
.cd87483ef {
  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;
}

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

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

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

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

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

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

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

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

.cd1b6ccd8 {
  list-style: none;
}

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

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

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

.cbea556bf {
  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 */
.c2e77a83b {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.c2e77a83b.caad8eddc {
  opacity: 1;
  transform: translateY(0);
}

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

/* Back to Top */
.cd246f7ff {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.c049d3944 .c2db11f5f {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Success Message */
.c33bf0200 {
  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);
}

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

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

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

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

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

.cad5a82c7.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;
}

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

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

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

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

/* Responsive */
@media (max-width: 1024px) {
  .c7e2421b2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ca41ea5ac {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .cbb844845 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cba3df91f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cba3df91f::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .c16fd309b {
    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);
  }
  
  .c16fd309b.open {
    right: 0;
  }
  
  .cb66427c9 {
    display: flex;
  }
  
  .c636f15e2 {
    font-size: 2.2rem;
  }
  
  .c98d985c9 {
    font-size: 1rem;
  }
  
  .c97a59923 {
    padding: 60px 0;
  }
  
  .cd0d7a627 {
    padding: 0 20px;
  }
  
  .c423d42df {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .c7e2421b2 {
    grid-template-columns: 1fr;
  }
  
  .c478d9662 {
    grid-template-columns: 1fr;
  }
  
  .ca5da7766 {
    grid-template-columns: 1fr;
  }
  
  .cec1cc0f1 {
    grid-template-columns: 1fr;
  }
  
  .c049d3944 .c2db11f5f {
    grid-template-columns: 1fr;
  }
  
  .cae66fcf7 {
    grid-template-columns: 1fr;
  }
  
  .c8d559974 {
    padding: 30px 20px;
  }
  
  .ca41ea5ac {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cbea556bf {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .cba3df91f {
    grid-template-columns: 1fr;
  }
  
  .c54f89190 {
    grid-template-columns: 1fr;
  }
  
  .c0f3df2a1 img {
    height: 300px;
  }
}

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