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

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

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

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

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

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

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

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

.c8d532172 .cc542c57e h2 {
  color: var(--text-light);
}

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

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

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

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

.c5ec30dcd {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c17caeddc.loaded .c4c00952c {
  transform: scale(1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c70153a32:hover {
  opacity: 1;
}

.c70153a32 .c089d7bd1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

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

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

.c8b016dff {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

.c8903a19d .c3987840e:hover {
  gap: 10px;
}

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

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

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

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

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

.c17dfcaf2:hover .c545235f3 {
  transform: translateY(0);
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ccf6ae6d4 {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .c8e92e6a4 {
    grid-template-columns: 1fr 1fr;
  }
  
  .c5abe8f5e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cfeeb63c8 {
    grid-template-columns: 1fr;
  }
  
  .cb4e59240 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .c3ed52795 {
    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);
  }
  
  .c3ed52795.c6a432fa3 {
    right: 0;
  }
  
  .c52184afa {
    display: flex;
  }
  
  .cd325949d {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .c17caeddc h1 {
    font-size: 2rem;
  }
  
  .c00096974 {
    flex-direction: column;
  }
  
  .c5abe8f5e {
    grid-template-columns: 1fr;
  }
  
  .c5a57c111 {
    flex-direction: column;
    gap: 30px;
  }
  
  .c5a57c111::before {
    display: none;
  }
  
  .c8e92e6a4 {
    grid-template-columns: 1fr;
  }
  
  .ce68e7082 {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .c7ffd39db {
    flex-direction: column;
  }
  
  .cb4e59240 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .cdcff1ded {
    gap: 30px;
  }
  
  .c1dc8adcb {
    padding: 60px 0;
  }
  
  .c178be7da img {
    height: 300px;
  }
}

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