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

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

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

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

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

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

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

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

.c9f18b37f .cdc0dbfe3 h2 {
  color: var(--text-light);
}

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

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

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

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

.caf04d9d7 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c342f6f25.loaded .c6b900afe {
  transform: scale(1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cd3baacb5:hover {
  opacity: 1;
}

.cd3baacb5 .cf2fe233b {
  font-size: 2rem;
  margin-bottom: 8px;
}

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

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

.c43780e6e {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

.c491e6014 .c3781f3b3:hover {
  gap: 10px;
}

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

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

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

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

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

.c86b7454f:hover .c6052227f {
  transform: translateY(0);
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c89a746eb {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .cd5dbcfdc {
    grid-template-columns: 1fr 1fr;
  }
  
  .cb65674a7 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ca648c142 {
    grid-template-columns: 1fr;
  }
  
  .c6adeb43b {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cb4b398ae {
    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);
  }
  
  .cb4b398ae.c35c53a55 {
    right: 0;
  }
  
  .c81c569ad {
    display: flex;
  }
  
  .cbbc9b583 {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .c342f6f25 h1 {
    font-size: 2rem;
  }
  
  .c39e64e6d {
    flex-direction: column;
  }
  
  .cb65674a7 {
    grid-template-columns: 1fr;
  }
  
  .c9b61a173 {
    flex-direction: column;
    gap: 30px;
  }
  
  .c9b61a173::before {
    display: none;
  }
  
  .cd5dbcfdc {
    grid-template-columns: 1fr;
  }
  
  .cb2223d47 {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .c00685c99 {
    flex-direction: column;
  }
  
  .c6adeb43b {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .c7e3bb8f1 {
    gap: 30px;
  }
  
  .c04a2b0db {
    padding: 60px 0;
  }
  
  .ce889bfd8 img {
    height: 300px;
  }
}

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