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

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

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

.ce3b5026a {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.c224bd896 a:hover::after,
.c224bd896 a.c20c743c5::after {
  width: 100%;
}

.c224bd896 a:hover,
.c224bd896 a.c20c743c5 {
  color: var(--text-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

.c290e00bc {
  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 */
.c54480279 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c8760359b {
  text-align: center;
}

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

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

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

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

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

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

.cd5724095 {
  padding: 30px;
}

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

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

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

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

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

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

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

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

.c4203334c:hover .c3e2691a5 {
  transform: translateY(0);
  opacity: 1;
}

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

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

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

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

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

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

.c1ecdb2bc {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cae3f646e { left: 20px; }
.cc15077b9 { right: 20px; }

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

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

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

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

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

.c896d2a72.c89b8ef19 {
  grid-column: 1 / -1;
}

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

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

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

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

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

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

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

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

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

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

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

.ce0df246c {
  padding: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.ca69de1bc {
  list-style: none;
}

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

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

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

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

.c2d99a52a.c20c743c5 {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c2a2692ec .c9ff91524 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

/* Responsive */
@media (max-width: 1024px) {
  .c10db949d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c8b398320 {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .ce17dd954 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .c9bbdf118 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c9bbdf118::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .c224bd896 {
    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);
  }
  
  .c224bd896.open {
    right: 0;
  }
  
  .cc0ea5dab {
    display: flex;
  }
  
  .cc1a7beaa {
    font-size: 2.2rem;
  }
  
  .cd2607f70 {
    font-size: 1rem;
  }
  
  .c5ab0c5b4 {
    padding: 60px 0;
  }
  
  .cab70ef2b {
    padding: 0 20px;
  }
  
  .ca4164e12 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .c10db949d {
    grid-template-columns: 1fr;
  }
  
  .cb3ab86b5 {
    grid-template-columns: 1fr;
  }
  
  .c9fcd07b7 {
    grid-template-columns: 1fr;
  }
  
  .c0d358f57 {
    grid-template-columns: 1fr;
  }
  
  .c2a2692ec .c9ff91524 {
    grid-template-columns: 1fr;
  }
  
  .c469ba222 {
    grid-template-columns: 1fr;
  }
  
  .ceb60507e {
    padding: 30px 20px;
  }
  
  .c8b398320 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .c2b1b7d99 {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .c9bbdf118 {
    grid-template-columns: 1fr;
  }
  
  .c3f7071a2 {
    grid-template-columns: 1fr;
  }
  
  .cacf62922 img {
    height: 300px;
  }
}

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