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

/* 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 */
.cbb2fa06c {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

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

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

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

.ca4edecf5 .cfc6c08c0 h2 {
  color: var(--text-light);
}

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

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

/* ============================================
   Loading Animation
   ============================================ */
.c10256fa8 {
  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;
}

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

.c1564a85e {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cf2873a25.loaded .ca738c86a {
  transform: scale(1);
}

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

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

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

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

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

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

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

/* Buttons */
.c2af5b248 {
  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);
}

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

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

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

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

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

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

/* Hero scroll indicator */
.c52cf3da9 {
  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;
}

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

.c3fca34f4::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
   ============================================ */
.c5ed025bc {
  padding: 60px 0;
  background: #fff;
  border-bottom: 1px solid var(--border-color);
}

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

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

.c14eb06ee:hover {
  opacity: 1;
}

.c14eb06ee .cb9490e17 {
  font-size: 2rem;
  margin-bottom: 8px;
}

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

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

.c7c03c063 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

.c89c858a8 .ce7e142a4:hover {
  gap: 10px;
}

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

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

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

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

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

.c070a2a0e:hover .c970f3b42 {
  transform: translateY(0);
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cd4f617d6 {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cfb01d750 {
  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)
   ============================================ */
.c7558ddbb {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-medium));
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .c6e42e347 {
    grid-template-columns: 1fr 1fr;
  }
  
  .c2d549700 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c8f76a51d {
    grid-template-columns: 1fr;
  }
  
  .cf188ea1f {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .c5093e6d1 {
    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);
  }
  
  .c5093e6d1.c9a8fe5c4 {
    right: 0;
  }
  
  .c5d365443 {
    display: flex;
  }
  
  .c3c2bf14d {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .cf2873a25 h1 {
    font-size: 2rem;
  }
  
  .c3bf9057b {
    flex-direction: column;
  }
  
  .c2d549700 {
    grid-template-columns: 1fr;
  }
  
  .ca5b70ea8 {
    flex-direction: column;
    gap: 30px;
  }
  
  .ca5b70ea8::before {
    display: none;
  }
  
  .c6e42e347 {
    grid-template-columns: 1fr;
  }
  
  .cfb01d750 {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .cfd3c8fb2 {
    flex-direction: column;
  }
  
  .cf188ea1f {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .c7013a0ab {
    gap: 30px;
  }
  
  .c153998d9 {
    padding: 60px 0;
  }
  
  .c64a21a07 img {
    height: 300px;
  }
}

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