/* ============================================
   {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 */
.c36462b44 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.ca0a57e56 a:hover::after,
.ca0a57e56 a.c58ba03eb::after {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ce361d98a: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 */
.ca93f9888 {
  padding: 6rem 2rem;
}

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

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

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

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

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

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

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

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

.ced80baef .cbc8174b4 p {
  color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c26909fb0:hover .c1465cbf4 {
  transform: translateY(0);
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

.c138cf0b8 {
  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 */
.cb6b832a1 {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 4rem 2rem;
}

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

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

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

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

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

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

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

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

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

.cd54b3ed2 {
  margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

.c512c98dc ul {
  list-style: none;
}

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

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

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

.c0aeae6fc {
  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) */
.cc31d599f {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

.ce96e25a1.c4875c907 {
  direction: rtl;
}

.ce96e25a1.c4875c907 > * {
  direction: ltr;
}

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

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

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

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

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

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

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

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

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

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

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

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

.c5a190b68.c070f2182 { left: 1rem; }
.c5a190b68.c779ec73b { right: 1rem; }

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

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

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

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

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

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

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

.c3c0db982:hover .c27c15358 {
  background: var(--accent);
  transform: scale(1.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cdfcbd73f {
  padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

/* Success Message */
.c0a3f35da {
  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;
}

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

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

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

.c2cfb0be5.show {
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .c93899e84 h1 { font-size: 2.8rem; }
  .c46f90537 { grid-template-columns: repeat(2, 1fr); }
  .cf1e18ba8 { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ca823a86c { grid-template-columns: repeat(2, 1fr); }
  .c02589118 { grid-template-columns: 1fr; }
  .ce96e25a1 { grid-template-columns: 1fr; gap: 2rem; }
  .ce96e25a1.c4875c907 { direction: ltr; }
}

@media (max-width: 768px) {
  .ca0a57e56 { display: none; }
  .cc76514c5 { display: flex; }
  
  .ca0a57e56.c58ba03eb {
    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;
  }
  
  .c93899e84 h1 { font-size: 2rem; }
  .cd15d6dd7 { font-size: 1rem; }
  .cbc8174b4 h2 { font-size: 1.8rem; }
  .c3db65798 { grid-template-columns: 1fr; }
  .ca823a86c { grid-template-columns: 1fr; }
  .ca3c7ee70 { grid-template-columns: 1fr; }
  .c46f90537 { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .c79c910b6 { font-size: 2rem; }
  .cf1e18ba8 { grid-template-columns: 1fr; }
  .c0aeae6fc { flex-direction: column; gap: 1rem; text-align: center; }
  .ce9a82b37 { flex-direction: column; gap: 2rem; }
  .ce9a82b37::before { display: none; }
  .c189d1fef { grid-template-columns: 1fr; }
  .c131261f6 { flex-direction: column; align-items: center; }
  .c8d14c392 img { height: 300px; }
  .cc31d599f { height: 40vh; min-height: 280px; }
  .cbfd7f80d h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .c93899e84 h1 { font-size: 1.6rem; }
  .ca93f9888 { padding: 4rem 1rem; }
  .cbc8174b4 h2 { font-size: 1.5rem; }
  .c79c910b6 { font-size: 1.8rem; }
  .ceffb55b6 { padding: 1.5rem; }
}
