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

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

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

.ce959a56b {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.cce6c7a5d a:hover::after,
.cce6c7a5d a.cbda4b220::after {
  width: 100%;
}

.cce6c7a5d a:hover,
.cce6c7a5d a.cbda4b220 {
  color: var(--text-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

.ca90ddf33 {
  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 */
.cbbb3dcd1 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c225f67fa {
  text-align: center;
}

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

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

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

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

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

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

.c9de90edb {
  padding: 30px;
}

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

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

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

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

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

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

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

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

.cad7ee691:hover .c7e2fe4af {
  transform: translateY(0);
  opacity: 1;
}

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

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

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

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

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

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

.c2ab26042 {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cefa6aa68 { left: 20px; }
.cd524d777 { right: 20px; }

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

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

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

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

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

.c83df89d4.cc5a74d7d {
  grid-column: 1 / -1;
}

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

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

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

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

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

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

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

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

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

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

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

.c18d2131b {
  padding: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.c653408c9 {
  list-style: none;
}

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

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

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

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

.c8fd85c9e.cbda4b220 {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c05a31b38 .c071c6554 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

/* Responsive */
@media (max-width: 1024px) {
  .c88f51303 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c2965c781 {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .cba16f4d3 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .c6daa25d0 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c6daa25d0::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .cce6c7a5d {
    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);
  }
  
  .cce6c7a5d.open {
    right: 0;
  }
  
  .cd5067f08 {
    display: flex;
  }
  
  .c497ddbd1 {
    font-size: 2.2rem;
  }
  
  .cb21d9e19 {
    font-size: 1rem;
  }
  
  .ce89f9e4e {
    padding: 60px 0;
  }
  
  .c097d09a7 {
    padding: 0 20px;
  }
  
  .c32f6d985 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .c88f51303 {
    grid-template-columns: 1fr;
  }
  
  .cfdd754ee {
    grid-template-columns: 1fr;
  }
  
  .c4aff6ea8 {
    grid-template-columns: 1fr;
  }
  
  .cd7bf42dd {
    grid-template-columns: 1fr;
  }
  
  .c05a31b38 .c071c6554 {
    grid-template-columns: 1fr;
  }
  
  .ca6e12761 {
    grid-template-columns: 1fr;
  }
  
  .cf92d900a {
    padding: 30px 20px;
  }
  
  .c2965c781 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .c3866491d {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .c6daa25d0 {
    grid-template-columns: 1fr;
  }
  
  .ccd6325c7 {
    grid-template-columns: 1fr;
  }
  
  .cc5d7c3a2 img {
    height: 300px;
  }
}

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