/* ============================================
   野生真菌寻猎与米其林珍稀食材供应 - 主样式表
   色彩体系：苔藓湿润绿 + 松露泥土褐
   ============================================ */

/* CSS Variables */
:root {
  --primary: #4a7c59;
  --primary-dark: #3a6347;
  --primary-light: #6b9e7a;
  --secondary: #8b6914;
  --secondary-light: #a8842a;
  --secondary-dark: #6d520f;
  --bg-dark: #1a1f1c;
  --bg-medium: #2a3028;
  --bg-light: #f5f3ef;
  --bg-section-alt: #f0ede6;
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-bg-dark: rgba(42, 48, 40, 0.9);
  --text-primary: #1a1f1c;
  --text-secondary: #4a5249;
  --text-light: #f5f3ef;
  --text-muted: #7a8279;
  --border-color: rgba(74, 124, 89, 0.2);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Noto Serif SC', serif;
  --font-body: 'Noto Sans SC', -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-body);
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Container */
.c90fbca08 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Spacing */
.c00cc71da {
  padding: 80px 0;
}

.c4252f42e {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.cea179408 {
  background-color: var(--bg-section-alt);
}

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

.c3e73f114 h2 {
  margin-bottom: 16px;
  color: var(--text-primary);
}

.c4252f42e .c3e73f114 h2 {
  color: var(--text-light);
}

.c3e73f114 p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
}

.ca9115939 {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

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

.c5bcc2266.loaded {
  opacity: 0;
  visibility: hidden;
}

.cbadd6bea {
  text-align: center;
}

.c17f2b45a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.cab02d159 {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.cab02d159::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  animation: loading 1.2s ease infinite;
}

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

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

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

.ca932ce77.c76218e04 {
  background: rgba(26, 31, 28, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

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

.c27b0f80c {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-light);
  font-weight: 700;
}

.c27b0f80c span {
  color: var(--primary-light);
}

.c9aead38d {
  display: flex;
  align-items: center;
  gap: 36px;
}

.c9aead38d a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.c9aead38d a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: var(--transition);
}

.c9aead38d a:hover {
  color: var(--primary-light);
}

.c9aead38d a:hover::after {
  width: 100%;
}

.c458c1aba {
  padding: 10px 24px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

.c458c1aba:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.c458c1aba::after {
  display: none !important;
}

.c48584e7d {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

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

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

.c86f10557 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.cc15d2dee.loaded .c86f10557 {
  transform: scale(1);
}

.c15e1b054 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 31, 28, 0.85) 0%,
    rgba(26, 31, 28, 0.5) 50%,
    rgba(26, 31, 28, 0.3) 100%
  );
}

.c733da8fa {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-left: 60px;
}

.c1435a9b1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(74, 124, 89, 0.2);
  border: 1px solid rgba(74, 124, 89, 0.4);
  border-radius: 30px;
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.cc15d2dee h1 {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.2;
}

.cc15d2dee h1 em {
  font-style: normal;
  color: var(--primary-light);
}

.c4432fe0f {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.c83b79cea {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.cde22cb57 {
  background: var(--primary);
  color: #fff;
}

.cde22cb57:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.3);
}

.c349cf6bb {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.c349cf6bb:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
  transform: translateY(-3px);
}

.cc8eb72dd {
  background: var(--secondary);
  color: #fff;
}

.cc8eb72dd:hover {
  background: var(--secondary-light);
  transform: translateY(-3px);
}

/* Hero scroll indicator */
.c0f6d8406 {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
}

.ca3266b90 {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.ca3266b90::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--primary-light);
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ============================================
   Trust / Partners Section
   ============================================ */
.c6ec50dd8 {
  padding: 60px 0;
  background: #fff;
  border-bottom: 1px solid var(--border-color);
}

.c5d1b706b {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.c88dda472 {
  text-align: center;
  opacity: 0.6;
  transition: var(--transition);
}

.c88dda472:hover {
  opacity: 1;
}

.c88dda472 .cad11840f {
  font-size: 2rem;
  margin-bottom: 8px;
}

.c88dda472 span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Stats */
.c46aae7b6 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 0;
}

.ca1825dd6 {
  text-align: center;
}

.cbdb66088 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.cd46da326 {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   Services / Advantages Section
   ============================================ */
.c5b0622f4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.c17595e36 {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.c17595e36::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.c17595e36:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.c17595e36:hover::before {
  transform: scaleX(1);
}

.cf3e4985d {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #fff;
}

.c17595e36 h4 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.c17595e36 p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.c17595e36 .cba4b4808 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.c17595e36 .cba4b4808:hover {
  gap: 10px;
}

/* ============================================
   Cases / Gallery Section
   ============================================ */
.cb3a70cf1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

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

.c58f2460b {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.ce3afa804:hover .c58f2460b {
  transform: translateY(0);
  opacity: 1;
}

.c58f2460b h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.c58f2460b p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* Filter Tabs */
.cbe60627f {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.c911c5541 {
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  transition: var(--transition);
}

.c911c5541.cd30f7d57,
.c911c5541:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ============================================
   Pain Points Section
   ============================================ */
.c22402665 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.c3e08499e {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.cde1af807:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.c5270a1c3 {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.c5270a1c3.c2408af09 {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.c5270a1c3.c8a905597 {
  background: rgba(74, 124, 89, 0.1);
  color: var(--primary);
}

.cde1af807 h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.cde1af807 p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ============================================
   Carousel / Swiper
   ============================================ */
.cbb83883a {
  position: relative;
  overflow: hidden;
}

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

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

.c2e377ffc img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.cc1e3757f {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 12px;
}

.ce25b5cad {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.ce25b5cad:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================
   Process / Flow Section
   ============================================ */
.c78f8e567 {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 40px 0;
}

.c78f8e567::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--border-color);
}

.c0a45947d {
  text-align: center;
  position: relative;
  flex: 1;
  padding: 0 15px;
}

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

.c0a45947d h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.c0a45947d p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   CTA / Conversion Section
   ============================================ */
.c31b23c90 {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.c31b23c90::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(74, 124, 89, 0.1);
}

.cd105f20a {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cd105f20a h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cd105f20a p {
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 30px;
}

/* Form */
.cd1454e77 {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c556a5e77 {
  display: flex;
  gap: 16px;
}

.c0d5ad967 {
  flex: 1;
}

.c0d5ad967 input,
.c0d5ad967 select,
.c0d5ad967 textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: var(--font-body);
}

.c0d5ad967 input::placeholder,
.c0d5ad967 textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.c0d5ad967 input:focus,
.c0d5ad967 select:focus,
.c0d5ad967 textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(74, 124, 89, 0.1);
}

.c0d5ad967 textarea {
  resize: vertical;
  min-height: 100px;
}

/* ============================================
   Quote Calculator
   ============================================ */
.cefffe435 {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

.cefffe435 h3 {
  margin-bottom: 24px;
  text-align: center;
}

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

.c21919a7f label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: block;
}

.c21919a7f select,
.c21919a7f input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  background: #fff;
  transition: var(--transition);
}

.c21919a7f select:focus,
.c21919a7f input:focus {
  outline: none;
  border-color: var(--primary);
}

.c6b3f426b {
  text-align: center;
  padding: 20px;
  background: rgba(74, 124, 89, 0.05);
  border-radius: var(--radius);
  margin-top: 10px;
}

.c6b3f426b .ce781fc39 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
}

/* ============================================
   Footer
   ============================================ */
.c52ee5134 {
  background: var(--bg-dark);
  padding: 60px 0 30px;
  color: var(--text-light);
}

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

.c53cdcc22 p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 12px;
}

.ce035ce9b h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1rem;
}

.ce035ce9b ul li {
  margin-bottom: 10px;
}

.ce035ce9b ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.ce035ce9b ul li a:hover {
  color: var(--primary-light);
}

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

/* ============================================
   Page Header (Inner Pages)
   ============================================ */
.c5db308f1 {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-medium));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.c5db308f1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.15;
}

.c5db308f1 h1 {
  color: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}

.c5db308f1 p {
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 2;
}

.c5c69fc5f {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}

.c5c69fc5f a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.c5c69fc5f a:hover {
  color: var(--primary-light);
}

.c5c69fc5f span {
  color: rgba(255,255,255,0.4);
}

/* ============================================
   Animations (Scroll Reveal)
   ============================================ */
.ca2dc46c2 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ca2dc46c2.visible {
  opacity: 1;
  transform: translateY(0);
}

.c11230b86 {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.c11230b86.visible {
  opacity: 1;
  transform: translateX(0);
}

.c4d1b0cab {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.c4d1b0cab.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Parallax */
.c8af0ded7 {
  transform: translateZ(0);
  will-change: transform;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .cfa2b81e7 {
    grid-template-columns: 1fr 1fr;
  }
  
  .cb3a70cf1 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c22402665 {
    grid-template-columns: 1fr;
  }
  
  .c46aae7b6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .c9aead38d {
    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: var(--transition);
  }
  
  .c9aead38d.cd30f7d57 {
    right: 0;
  }
  
  .c48584e7d {
    display: flex;
  }
  
  .c733da8fa {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .cc15d2dee h1 {
    font-size: 2rem;
  }
  
  .c83b79cea {
    flex-direction: column;
  }
  
  .cb3a70cf1 {
    grid-template-columns: 1fr;
  }
  
  .c78f8e567 {
    flex-direction: column;
    gap: 30px;
  }
  
  .c78f8e567::before {
    display: none;
  }
  
  .cfa2b81e7 {
    grid-template-columns: 1fr;
  }
  
  .cb0f9e38e {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .c556a5e77 {
    flex-direction: column;
  }
  
  .c46aae7b6 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .c5d1b706b {
    gap: 30px;
  }
  
  .c00cc71da {
    padding: 60px 0;
  }
  
  .c2e377ffc img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .c90fbca08 {
    padding: 0 16px;
  }
  
  .c17595e36 {
    padding: 30px 20px;
  }
  
  .c46aae7b6 {
    grid-template-columns: 1fr;
  }
}
