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

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

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

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

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

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

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

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

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

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

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

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

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

.cffb13992 a:hover::after,
.cffb13992 a.cfb25ae84::after {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c938635fa .cab1253b5 p {
  color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cca0b173c:hover .c7374f26e {
  transform: translateY(0);
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c4a6c9146 {
  margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

.c47dd9d12 ul {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c203ec7a0.c4f20bc83 {
  direction: rtl;
}

.c203ec7a0.c4f20bc83 > * {
  direction: ltr;
}

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

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

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

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

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

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

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

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

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

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

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

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

.cf06ab16d.cfd85c978 { left: 1rem; }
.cf06ab16d.c3d986bb7 { right: 1rem; }

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

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

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

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

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

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

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

.cee2cc707:hover .ca84db5c9 {
  background: var(--accent);
  transform: scale(1.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c9d9cd82e {
  padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.cc06ff6e8.show {
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .c19c254fa h1 { font-size: 2.8rem; }
  .c3b6d208a { grid-template-columns: repeat(2, 1fr); }
  .cb2e2e8d8 { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cc35d09d6 { grid-template-columns: repeat(2, 1fr); }
  .c25b6e896 { grid-template-columns: 1fr; }
  .c203ec7a0 { grid-template-columns: 1fr; gap: 2rem; }
  .c203ec7a0.c4f20bc83 { direction: ltr; }
}

@media (max-width: 768px) {
  .cffb13992 { display: none; }
  .c32baadc7 { display: flex; }
  
  .cffb13992.cfb25ae84 {
    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;
  }
  
  .c19c254fa h1 { font-size: 2rem; }
  .c4b0ea4ad { font-size: 1rem; }
  .cab1253b5 h2 { font-size: 1.8rem; }
  .c48f338e4 { grid-template-columns: 1fr; }
  .cc35d09d6 { grid-template-columns: 1fr; }
  .c90cb5ca0 { grid-template-columns: 1fr; }
  .c3b6d208a { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .ce74d7f34 { font-size: 2rem; }
  .cb2e2e8d8 { grid-template-columns: 1fr; }
  .cbc89f5b0 { flex-direction: column; gap: 1rem; text-align: center; }
  .c426f72d3 { flex-direction: column; gap: 2rem; }
  .c426f72d3::before { display: none; }
  .c3dc24eb1 { grid-template-columns: 1fr; }
  .c3dddedd2 { flex-direction: column; align-items: center; }
  .c60e00dd0 img { height: 300px; }
  .caf53faee { height: 40vh; min-height: 280px; }
  .cd7357c70 h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .c19c254fa h1 { font-size: 1.6rem; }
  .c054dedd0 { padding: 4rem 1rem; }
  .cab1253b5 h2 { font-size: 1.5rem; }
  .ce74d7f34 { font-size: 1.8rem; }
  .c6bfac422 { padding: 1.5rem; }
}
