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

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

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

.c669249f5 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

.cf1b870f6 a:hover::after,
.cf1b870f6 a.c5a4941a2::after {
  width: 100%;
}

.cf1b870f6 a:hover,
.cf1b870f6 a.c5a4941a2 {
  color: var(--text-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

.cce2500f0 {
  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 */
.c397487f4 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cff184d14 {
  text-align: center;
}

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

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

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

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

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

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

.cc9de3c7a {
  padding: 30px;
}

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

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

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

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

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

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

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

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

.cbafe61af:hover .c0774c9d7 {
  transform: translateY(0);
  opacity: 1;
}

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

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

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

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

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

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

.c70617b5d {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cecf1bec2 { left: 20px; }
.c23cc569f { right: 20px; }

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

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

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

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

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

.c98b69387.c43d1528b {
  grid-column: 1 / -1;
}

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

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

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

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

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

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

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

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

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

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

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

.cd7b7691b {
  padding: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.c25de0c51 {
  list-style: none;
}

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

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

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

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

.ca55e5513.c5a4941a2 {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cc3c1853c .c219ec25d {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

/* Responsive */
@media (max-width: 1024px) {
  .cfbc6abde {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cd4bf881d {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .c0368e7d6 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .c0b17ea62 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c0b17ea62::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .cf1b870f6 {
    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);
  }
  
  .cf1b870f6.open {
    right: 0;
  }
  
  .c08234cce {
    display: flex;
  }
  
  .c0e3e2403 {
    font-size: 2.2rem;
  }
  
  .c37d200d0 {
    font-size: 1rem;
  }
  
  .caa90eaf2 {
    padding: 60px 0;
  }
  
  .ca6603501 {
    padding: 0 20px;
  }
  
  .c9b94a3a0 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .cfbc6abde {
    grid-template-columns: 1fr;
  }
  
  .cea249a7b {
    grid-template-columns: 1fr;
  }
  
  .caf878706 {
    grid-template-columns: 1fr;
  }
  
  .c6906634c {
    grid-template-columns: 1fr;
  }
  
  .cc3c1853c .c219ec25d {
    grid-template-columns: 1fr;
  }
  
  .ca1c8e9f4 {
    grid-template-columns: 1fr;
  }
  
  .caf4801a3 {
    padding: 30px 20px;
  }
  
  .cd4bf881d {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .c75a7390c {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .c0b17ea62 {
    grid-template-columns: 1fr;
  }
  
  .c07625061 {
    grid-template-columns: 1fr;
  }
  
  .cae4f5214 img {
    height: 300px;
  }
}

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