/* ============================================
   造梦地推拉新 - CPA业务展示页面样式
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #1aad6e;
  --primary-dark: #158c58;
  --primary-light: #e8f8f0;
  --orange: #f5762a;
  --orange-light: #fff4eb;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a68;
  --text-muted: #8c8ca1;
  --bg-white: #ffffff;
  --bg-light: #f7f8fc;
  --bg-gray: #f0f1f5;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section Base ---------- */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-title.text-left {
  text-align: left;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 173, 110, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 17px;
}

.btn-promote {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-promote:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 173, 110, 0.3);
}

/* ============================================
   Hero Banner
   ============================================ */
.hero-banner {
  position: relative;
  background: linear-gradient(135deg, #0d3b2e 0%, #134e3a 30%, #1a7a55 70%, #1aad6e 100%);
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(26, 173, 110, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(26, 173, 110, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-suffix {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-image {
  flex: 0 0 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ============================================
   Platform Intro
   ============================================ */
.platform-intro {
  background: var(--bg-white);
}

.intro-grid {
  display: flex;
  gap: 60px;
  align-items: center;
}

.intro-image-col {
  flex: 0 0 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.intro-text-col {
  flex: 1;
  min-width: 0;
}

.intro-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.intro-paragraph {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.text-highlight {
  color: var(--primary);
  font-weight: 600;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.intro-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon.icon-shield {
  background: var(--primary-light);
}

.feature-icon.icon-shield::after {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--primary);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.feature-icon.icon-chart {
  background: var(--orange-light);
}

.feature-icon.icon-chart::after {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--orange);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='22 12 18 12 15 21 9 3 6 12 2 12'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='22 12 18 12 15 21 9 3 6 12 2 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.feature-icon.icon-wallet {
  background: #eff6ff;
}

.feature-icon.icon-wallet::after {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--blue);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='4' width='22' height='16' rx='2' ry='2'/%3E%3Cline x1='1' y1='10' x2='23' y2='10'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='4' width='22' height='16' rx='2' ry='2'/%3E%3Cline x1='1' y1='10' x2='23' y2='10'/%3E%3C/svg%3E") center/contain no-repeat;
}

.feature-icon.icon-support {
  background: #f5f3ff;
}

.feature-icon.icon-support::after {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--purple);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.intro-feature-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.intro-feature-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   Projects Section
   ============================================ */
.projects-section {
  background: var(--bg-light);
}

.project-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--bg-white);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.project-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.project-card.hidden {
  display: none;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.card-title-group {
  min-width: 0;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.card-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-gray);
  padding: 2px 8px;
  border-radius: 4px;
}

.card-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--bg-gray);
  border-bottom: 1px solid var(--bg-gray);
}

.info-item {
  flex: 1;
  text-align: center;
}

.info-value.price {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
}

.info-value.count {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
}

.info-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.info-divider {
  width: 1px;
  height: 32px;
  background: var(--bg-gray);
}

.btn-promote {
  margin-top: auto;
  margin-bottom: 8px;
}

.card-footer-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================
   Process Section
   ============================================ */
.process-section {
  background: var(--bg-white);
}

.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.process-step {
  flex: 0 0 200px;
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.process-step:hover .step-number {
  color: var(--primary);
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

.step-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
}

.process-step:hover .step-icon {
  background: var(--primary);
  box-shadow: 0 8px 24px rgba(26, 173, 110, 0.3);
}

.process-step:hover .step-icon svg {
  stroke: #fff;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.process-connector {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
  margin-top: 140px;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
}

/* ============================================
   Compare Section
   ============================================ */
.compare-section {
  background: var(--bg-light);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.compare-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.compare-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.compare-ditui:hover {
  border-color: var(--primary);
}

.compare-wangtui:hover {
  border-color: var(--blue);
}

.compare-card-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bg-gray);
}

.compare-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.compare-ditui .compare-icon {
  background: var(--primary-light);
}

.compare-ditui .compare-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary);
}

.compare-wangtui .compare-icon {
  background: #eff6ff;
}

.compare-wangtui .compare-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--blue);
}

.compare-card-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.compare-card-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.compare-list {
  margin-bottom: 24px;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.compare-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.compare-ditui .compare-check {
  background: var(--primary-light);
}

.compare-wangtui .compare-check {
  background: #eff6ff;
}

.compare-check::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border-bottom: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
}

.compare-wangtui .compare-check::after {
  border-color: var(--blue);
}

.compare-earnings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
}

.compare-ditui .compare-earnings {
  background: var(--primary-light);
}

.compare-wangtui .compare-earnings {
  background: #eff6ff;
}

.earnings-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.earnings-value {
  font-size: 22px;
  font-weight: 700;
}

.compare-ditui .earnings-value {
  color: var(--primary);
}

.compare-wangtui .earnings-value {
  color: var(--blue);
}

/* ============================================
   Advantages Section
   ============================================ */
.advantages-section {
  background: var(--bg-white);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.adv-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.adv-icon svg {
  width: 30px;
  height: 30px;
}

.adv-icon-1 {
  background: var(--primary-light);
}

.adv-icon-1 svg {
  stroke: var(--primary);
}

.adv-icon-2 {
  background: var(--orange-light);
}

.adv-icon-2 svg {
  stroke: var(--orange);
}

.adv-icon-3 {
  background: #eff6ff;
}

.adv-icon-3 svg {
  stroke: var(--blue);
}

.adv-icon-4 {
  background: #fef3c7;
}

.adv-icon-4 svg {
  stroke: #d97706;
}

.adv-icon-5 {
  background: #f5f3ff;
}

.adv-icon-5 svg {
  stroke: var(--purple);
}

.adv-icon-6 {
  background: #fce7f3;
}

.adv-icon-6 svg {
  stroke: #ec4899;
}

.adv-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.adv-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   Data Section
   ============================================ */
.data-section {
  background: linear-gradient(135deg, #0d3b2e, #134e3a, #1a7a55);
  color: #fff;
  padding: 100px 0;
}

.data-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.data-image {
  flex: 0 0 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.data-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.data-info {
  flex: 1;
  min-width: 0;
}

.data-info .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.data-info .section-title {
  color: #fff;
  text-align: left;
  margin-bottom: 32px;
}

.data-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.data-stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.data-stat-num {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.data-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.data-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

/* ============================================
   Partners Section
   ============================================ */
.partners-section {
  background: var(--bg-light);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partner-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.partner-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.partner-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.partner-logo svg {
  width: 28px;
  height: 28px;
}

.partner-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
  background: var(--bg-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.testimonial-avatar svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-meta strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-meta span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #1aad6e 0%, #0d8c55 50%, #0a6b42 100%);
  padding: 80px 0;
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.cta-text {
  flex: 1;
  min-width: 0;
}

.cta-title {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.cta-trust svg {
  stroke: rgba(255, 255, 255, 0.7);
}

.cta-image {
  flex: 0 0 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-image {
    flex: none;
    width: 100%;
    max-width: 520px;
  }

  .hero-title {
    font-size: 42px;
  }

  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .intro-grid {
    flex-direction: column;
  }

  .intro-image-col {
    flex: none;
    width: 100%;
    max-width: 520px;
  }

  .data-content {
    flex-direction: column;
  }

  .data-image {
    flex: none;
    width: 100%;
    max-width: 520px;
  }

  .cta-content {
    flex-direction: column;
  }

  .cta-image {
    flex: none;
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-banner {
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-num {
    font-size: 28px;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .process-grid {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .process-connector {
    width: 2px;
    height: 32px;
    margin-top: 0;
    background: linear-gradient(180deg, var(--primary-light), var(--primary), var(--primary-light));
  }

  .process-connector::after {
    right: -4px;
    top: auto;
    bottom: -4px;
    width: 10px;
    height: 10px;
    border-top: none;
    border-right: none;
    border-bottom: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    transform: rotate(-45deg);
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 30px;
  }

  .data-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .intro-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* Scroll reveal initial state */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
