/* ============================================
   {SITE_TITLE} - 全站样式表
   色彩体系：丛林迷彩绿 + 篝火暖橙色
   ============================================ */

/* CSS Variables */
:root {
  --primary: #2D5016;
  --primary-light: #4A7C23;
  --primary-dark: #1A3009;
  --accent: #E8722A;
  --accent-light: #F5943D;
  --accent-dark: #C45A1A;
  --bg-dark: #0F1A0A;
  --bg-medium: #1C2B14;
  --bg-light: #F5F7F3;
  --bg-section-alt: #EEF2EB;
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-bg-dark: rgba(45, 80, 22, 0.12);
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-light: #FFFFFF;
  --text-muted: #7A7A7A;
  --border: #D4DED0;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --max-width: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-primary);
  line-height: 1.8;
  background: var(--bg-light);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--accent);
}

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

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

.c3e535300 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  animation: pulse 1.5s ease-in-out infinite;
}

.c3e535300 span {
  color: var(--accent);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

/* Navigation */
.c03dc1318 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: var(--transition);
  background: transparent;
}

.c03dc1318.ccdea522e {
  background: rgba(15, 26, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.7rem 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cce98be1e {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cf1fcb9a0 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.cf1fcb9a0 span {
  color: var(--accent);
}

.c7e0a0444 {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.c7e0a0444 a {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
}

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

.c7e0a0444 a:hover::after,
.c7e0a0444 a.ccad4eb78::after {
  width: 100%;
}

.c7e0a0444 a:hover {
  color: var(--accent);
}

.c0f7513b2 {
  background: var(--accent);
  color: var(--text-light) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
}

.c0f7513b2:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

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

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

/* Hero Section */
.ccc0a2f35 {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.c878a6ebf {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.caae867df {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 26, 10, 0.7) 0%,
    rgba(45, 80, 22, 0.4) 50%,
    rgba(15, 26, 10, 0.6) 100%
  );
}

.c21a9454e {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease 0.5s both;
}

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

.c5cefc908 {
  display: inline-block;
  background: rgba(232, 114, 42, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.ccc0a2f35 h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.ccc0a2f35 h1 span {
  color: var(--accent);
}

.c0bfa7f72 {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cc4bab192 {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.cdb9f5b87 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.cc7feefa2 {
  background: var(--accent);
  color: var(--text-light);
}

.cc7feefa2:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 114, 42, 0.4);
  color: var(--text-light);
}

.c2fd7569a {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.c2fd7569a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-light);
  color: var(--text-light);
  transform: translateY(-3px);
}

.c37b28e50 {
  background: var(--primary);
  color: var(--text-light);
}

.c37b28e50:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.4);
  color: var(--text-light);
}

/* Section Styles */
.c476ff3ba {
  padding: 6rem 2rem;
}

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

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

.cf88f9cf0 {
  max-width: var(--max-width);
  margin: 0 auto;
}

.c5c8f29aa {
  text-align: center;
  margin-bottom: 4rem;
}

.ce4cce545 {
  display: inline-block;
  background: rgba(45, 80, 22, 0.1);
  color: var(--primary);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.c383dfec1 .ce4cce545 {
  background: rgba(232, 114, 42, 0.2);
  color: var(--accent-light);
}

.c5c8f29aa h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.c5c8f29aa p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.c383dfec1 .c5c8f29aa p {
  color: rgba(255, 255, 255, 0.7);
}

/* Trust Section */
.cd6f78520 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.c539ac6a1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  transition: var(--transition);
}

.c539ac6a1:hover {
  opacity: 1;
  transform: scale(1.05);
}

.c8b958b0a {
  width: 60px;
  height: 60px;
  background: var(--card-bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

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

/* Services Grid */
.c29ec9ed2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.c8a568401 {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

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

.c69f06063 {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.c8a568401 h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.c8a568401 p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Cases Gallery */
.c1b594778 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

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

.c7dafa153:hover img {
  transform: scale(1.1);
}

.c5e9d7181 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--text-light);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.c7dafa153:hover .c5e9d7181 {
  transform: translateY(0);
  opacity: 1;
}

.c5e9d7181 h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.c5e9d7181 span {
  font-size: 0.85rem;
  color: var(--accent-light);
}

/* Filter Tabs */
.c83a7a4ef {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.ce74657db {
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.ce74657db.ccad4eb78,
.ce74657db:hover {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

/* Pain Points Section */
.ce9f3f60a {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.c6138c96f {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: var(--transition);
}

.c6138c96f:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
}

.cb3282d86 {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(232, 114, 42, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
}

.c6138c96f h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.c6138c96f p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.c39c638e5 {
  display: inline-block;
  background: rgba(45, 80, 22, 0.1);
  color: var(--primary);
  padding: 0.2rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Stats Counter */
.c10af295b {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 4rem 2rem;
}

.cd6238d8b {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.c7ba065ee {
  text-align: center;
  color: var(--text-light);
}

.c3c469530 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 0.3rem;
}

.c6f26fa07 {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* CTA Section */
.cce9d380d {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-medium));
  padding: 5rem 2rem;
  text-align: center;
}

.c7272fd45 {
  max-width: 700px;
  margin: 0 auto;
}

.c7272fd45 h2 {
  font-size: 2.2rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.c7272fd45 p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Contact Form */
.c4320aa28 {
  max-width: 600px;
  margin: 0 auto;
}

.c343d409d {
  margin-bottom: 1.5rem;
}

.c343d409d label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.c343d409d input,
.c343d409d select,
.c343d409d textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-main);
  transition: var(--transition);
  background: #fff;
}

.c343d409d input:focus,
.c343d409d select:focus,
.c343d409d textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.c343d409d textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.cf1aa8cc0 {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 2rem 2rem;
}

.cf2f5a8ba {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.c52347adb p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.cf2533c05 h4 {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--accent-light);
}

.cf2533c05 ul {
  list-style: none;
}

.cf2533c05 ul li {
  margin-bottom: 0.6rem;
}

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

.cf2533c05 ul li a:hover {
  color: var(--accent);
}

.c6d0c5390 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Page Hero (Inner Pages) */
.c683e47b0 {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.c683e47b0 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c6eb62a45 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 26, 10, 0.7);
}

.cf1e92164 {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
}

.cf1e92164 h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.cf1e92164 p {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Breadcrumb */
.cbf758ad8 {
  padding: 1rem 2rem;
  background: var(--bg-section-alt);
}

.cc2d7ebb4 {
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cc2d7ebb4 a {
  color: var(--text-muted);
}

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

/* Content Sections */
.content-section {
  padding: 4rem 2rem;
}

.c4a47e309 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.c4a47e309.c5a115e5d {
  direction: rtl;
}

.c4a47e309.c5a115e5d > * {
  direction: ltr;
}

.cceba0769 h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.cceba0769 p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.c89c321ff {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.c89c321ff img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.c89c321ff:hover img {
  transform: scale(1.03);
}

/* Carousel */
.c1c46ca6d {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

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

.ca2c0dccd img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.c7927c974 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--text-light);
}

.cf5d4f7c3 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 5;
}

.cf5d4f7c3:hover {
  background: var(--accent);
  color: var(--text-light);
}

.cf5d4f7c3.c54d161d5 { left: 1rem; }
.cf5d4f7c3.cf7e1513f { right: 1rem; }

.c4b70a353 {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.c1421f327 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.c1421f327.ccad4eb78 {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

/* Process Flow */
.c3eeb4137 {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 2rem 0;
}

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

.cf4cdc2a8 {
  position: relative;
  text-align: center;
  flex: 1;
  z-index: 2;
}

.cdc252b11 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.cf4cdc2a8:hover .cdc252b11 {
  background: var(--accent);
  transform: scale(1.1);
}

.cf4cdc2a8 h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

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

/* Quote Calculator */
.cc3ae9049 {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cc3ae9049 h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.cc23de45e {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.c74c2a1de {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  text-align: center;
  color: var(--text-light);
  display: none;
}

.c74c2a1de.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.c74c2a1de .cc55db64c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-light);
}

/* News Grid */
.ca2237688 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.c1e877f9b {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.c1e877f9b:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.c10702811 {
  height: 200px;
  overflow: hidden;
}

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

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

.cad810d89 {
  padding: 1.5rem;
}

.cc15627e0 {
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.cad810d89 h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.cad810d89 p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Scroll Animations */
.cca7d27d6 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

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

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

/* Success Message */
.c26e5a021 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--card-bg);
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-hover);
  z-index: 10000;
  display: none;
}

.c26e5a021.show {
  display: block;
  animation: fadeInUp 0.3s ease;
}

.c26e5a021 .cb3807718 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.c51a38415 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}

.c51a38415.show {
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .ccc0a2f35 h1 { font-size: 2.8rem; }
  .cd6238d8b { grid-template-columns: repeat(2, 1fr); }
  .cf2f5a8ba { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .c1b594778 { grid-template-columns: repeat(2, 1fr); }
  .ce9f3f60a { grid-template-columns: 1fr; }
  .c4a47e309 { grid-template-columns: 1fr; gap: 2rem; }
  .c4a47e309.c5a115e5d { direction: ltr; }
}

@media (max-width: 768px) {
  .c7e0a0444 { display: none; }
  .ce9cf18f2 { display: flex; }
  
  .c7e0a0444.ccad4eb78 {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 26, 10, 0.98);
    padding: 2rem;
    gap: 1.5rem;
  }
  
  .ccc0a2f35 h1 { font-size: 2rem; }
  .c0bfa7f72 { font-size: 1rem; }
  .c5c8f29aa h2 { font-size: 1.8rem; }
  .c29ec9ed2 { grid-template-columns: 1fr; }
  .c1b594778 { grid-template-columns: 1fr; }
  .ca2237688 { grid-template-columns: 1fr; }
  .cd6238d8b { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .c3c469530 { font-size: 2rem; }
  .cf2f5a8ba { grid-template-columns: 1fr; }
  .c6d0c5390 { flex-direction: column; gap: 1rem; text-align: center; }
  .c3eeb4137 { flex-direction: column; gap: 2rem; }
  .c3eeb4137::before { display: none; }
  .cc23de45e { grid-template-columns: 1fr; }
  .cc4bab192 { flex-direction: column; align-items: center; }
  .ca2c0dccd img { height: 300px; }
  .c683e47b0 { height: 40vh; min-height: 280px; }
  .cf1e92164 h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .ccc0a2f35 h1 { font-size: 1.6rem; }
  .c476ff3ba { padding: 4rem 1rem; }
  .c5c8f29aa h2 { font-size: 1.5rem; }
  .c3c469530 { font-size: 1.8rem; }
  .c8a568401 { padding: 1.5rem; }
}
