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

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

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

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

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

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

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

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

.c2c7d0188 .c5916b98c h2 {
  color: var(--text-light);
}

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

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

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

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

.ca4dac25f {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c7e2c7030.loaded .cd66fd43e {
  transform: scale(1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ca323c860:hover {
  opacity: 1;
}

.ca323c860 .cc23d7434 {
  font-size: 2rem;
  margin-bottom: 8px;
}

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

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

.c38dd2cf7 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

.c292050ac .c64aecadc:hover {
  gap: 10px;
}

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

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

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

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

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

.cc34effaf:hover .cb583a1aa {
  transform: translateY(0);
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cc863c3b8 {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .c477bc2ce {
    grid-template-columns: 1fr 1fr;
  }
  
  .cfdf35d52 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ca35bcd8e {
    grid-template-columns: 1fr;
  }
  
  .c52f7fbdb {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ce291e379 {
    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);
  }
  
  .ce291e379.c1a7032c0 {
    right: 0;
  }
  
  .c248cb520 {
    display: flex;
  }
  
  .cedfdf4c4 {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .c7e2c7030 h1 {
    font-size: 2rem;
  }
  
  .c6308d52c {
    flex-direction: column;
  }
  
  .cfdf35d52 {
    grid-template-columns: 1fr;
  }
  
  .cefc7a897 {
    flex-direction: column;
    gap: 30px;
  }
  
  .cefc7a897::before {
    display: none;
  }
  
  .c477bc2ce {
    grid-template-columns: 1fr;
  }
  
  .c42ce16fd {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .cdffbc0eb {
    flex-direction: column;
  }
  
  .c52f7fbdb {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .cb0f910e5 {
    gap: 30px;
  }
  
  .c872d2e7c {
    padding: 60px 0;
  }
  
  .c4813605a img {
    height: 300px;
  }
}

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