
/* ═══════════════════════════════════════════════
   DASHEN UC  —  Fun · Fresh · Engaging
   Palette: white, greens, never black as a bg
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.dc-root {
  font-family: 'Alexandria', sans-serif;
  background: #f4faf0;
  direction: rtl;
  overflow-x: hidden;
}

/* ──────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────── */

.dc-hero {
  position: relative;
  background: linear-gradient(135deg, #4a9522 0%, #7BBA42 45%, #9dd158 100%);
  padding: 64px 48px 100px;
  overflow: hidden;
}

/* decorative floating circles */
.dc-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  animation: dcFloat 8s ease-in-out infinite;
}
.dc-bubble-1 { width: 340px; height: 340px; top: -100px; left: -80px; animation-delay: 0s; }
.dc-bubble-2 { width: 200px; height: 200px; top: 30px;  right: 320px; animation-delay: 2s; background: rgba(255,255,255,0.06); }
.dc-bubble-3 { width: 120px; height: 120px; bottom: 60px; left: 200px; animation-delay: 4s; }
.dc-bubble-4 { width: 80px;  height: 80px;  top: 80px;  left: 400px;  animation-delay: 1s; background: rgba(255,255,255,0.12); }

@keyframes dcFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-20px); }
}

.dc-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── hero text ── */
.dc-hero-text { flex: 1; }

.dc-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.dc-tag-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: dcPulse 2s infinite;
  flex-shrink: 0;
}

@keyframes dcPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.6); }
}

/* ── floating area chips ── */
.dc-chip {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  animation: dcFloat 6s ease-in-out infinite;
}
.dc-chip-a { top: 22px;  left: 48%;  animation-delay: 0s;   }
.dc-chip-b { top: 52px;  left: 30%;  animation-delay: 1.8s; }
.dc-chip-c { bottom: 90px; left: 38%; animation-delay: 3.2s; }

/* ── headline ── */
.dc-hero-h1 {
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dc-h1-line1 {
  display: block;
  opacity: 0.92;
}

.dc-h1-line2 {
  display: block;
}

/* ── THE FIX: highlight word as an inline pill ── */
.dc-highlight {
  display: inline;
  background: rgba(255,255,255,0.28);
  border-radius: 10px;
  padding: 2px 10px 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-style: italic;
}

.dc-hero-p {
  color: rgba(255,255,255,0.88);
  font-size: 16.5px;
  line-height: 1.9;
  max-width: 460px;
  margin-bottom: 22px;
}

/* ── mini stats inline ── */
.dc-hero-mini-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  padding: 12px 20px;
  margin-bottom: 28px;
  gap: 4px;
}

.dc-mstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 18px;
}
.dc-mstat strong {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.dc-mstat span {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  margin-top: 3px;
  font-weight: 500;
}
.dc-mstat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.dc-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.dc-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #3d8018;
  border: none;
  border-radius: 14px;
  padding: 14px 28px;
  font-family: 'Alexandria', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dc-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.2);
}

.dc-arrow { font-size: 18px; }

.dc-hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
}

.dc-green-dot {
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.35);
  animation: dcPulse 2.5s infinite;
}

/* ── hero photo collage ── */
.dc-hero-photos {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
}

.dc-photo-main {
  position: relative;
  width: 280px;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,0.25);
  border: 4px solid rgba(255,255,255,0.3);
}

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

.dc-photo-main:hover img { transform: scale(1.06); }

/* ── rating badge on main photo ── */
.dc-photo-rating {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255,255,255,0.96);
  color: #3d8018;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
.dc-rating-stars {
  display: flex;
  gap: 1px;
  align-items: center;
}
.dc-rstar {
  color: #f5a623;
  font-size: 11px;
  line-height: 1;
}
.dc-rating-text {
  font-size: 11px;
  font-weight: 600;
  color: #444;
  margin-right: 4px;
}

.dc-photo-mini-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
}

.dc-photo-mini {
  position: relative;
  width: 138px;
  height: 152px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
  border: 3px solid rgba(255,255,255,0.3);
}

.dc-photo-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dc-photo-mini:hover img { transform: scale(1.08); }

.dc-mini-label {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(to top, rgba(50,130,20,0.85) 0%, transparent 100%);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 18px 10px 8px;
  text-align: center;
}

/* ── live badge ── */
.dc-live-badge {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-left: 6px;
  letter-spacing: 0.5px;
}

/* ── button icon ── */
.dc-btn-icon {
  font-size: 17px;
  transition: transform 0.25s ease;
  display: inline-block;
}
.dc-hero-btn:hover .dc-btn-icon { transform: translateX(-4px); }

/* wave */
.dc-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}

.dc-wave svg { width: 100%; height: 80px; }

/* ──────────────────────────────────────────────
   STATS
   ────────────────────────────────────────────── */

.dc-stats-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.dc-stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  text-align: center;
  flex: 1;
  min-width: 150px;
  max-width: 220px;
  box-shadow: 0 4px 20px rgba(123,186,66,0.12);
  border: 2px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.dc-stat-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, #7BBA42, #9dd158);
  border-radius: 20px 20px 0 0;
}

.dc-stat-card:hover {
  border-color: #7BBA42;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(123,186,66,0.22);
}

.dc-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #7BBA42;
  line-height: 1;
  letter-spacing: -0.5px;
}

.dc-stat-label {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
  font-weight: 500;
}

/* ──────────────────────────────────────────────
   SECTION HEADER
   ────────────────────────────────────────────── */

.dc-head-section { padding: 48px 40px 32px; }

.dc-head-inner { max-width: 1200px; margin: 0 auto; text-align: center; }

.dc-head-tag {
  display: inline-block;
  background: #e8f7d6;
  color: #3d8018;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.dc-head-h2 {
  font-size: 44px;
  font-weight: 800;
  color: #1a2c0e;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.dc-head-sub {
  color: #5a7048;
  font-size: 16px;
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ──────────────────────────────────────────────
   CARDS
   ────────────────────────────────────────────── */

.dc-cards-section {
  padding: 0 36px 72px;
}

.dc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── card ── */
.dc-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border: 2px solid #edf7e4;
  transition:
    transform 0.3s cubic-bezier(.22,.8,.25,1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  cursor: pointer;
  position: relative;
}

.dc-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 56px rgba(123,186,66,0.25);
  border-color: #7BBA42;
}

/* shine sweep on hover */
.dc-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0) 70%
  );
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  pointer-events: none;
  z-index: 4;
}

.dc-card:hover .dc-card-shine {
  transform: translateX(100%);
}

/* photo */
.dc-card-photo-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #d4edba;
}

.dc-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(.22,.8,.25,1);
  display: block;
}

.dc-card:hover .dc-card-photo { transform: scale(1.08); }

/* badge on image */
.dc-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #7BBA42;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(61,128,24,0.35);
  transition: background 0.2s;
}

.dc-card:hover .dc-card-badge { background: #4a9522; }

/* card body */
.dc-card-body {
  padding: 22px 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  border-top: 2px solid #f0f9e8;
}

.dc-card-name {
  font-size: 20px;
  font-weight: 800;
  color: #1a2c0e;
  line-height: 1.3;
}

.dc-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #7BBA42, #5fa031);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 9px 16px;
  font-family: 'Alexandria', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(91,160,49,0.3);
}

.dc-card-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(91,160,49,0.45);
}

.dc-btn-arrow { font-size: 14px; }

/* ═══════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════ */
.dc-how-section {
  padding: 80px 48px;
  background: #fff;
}

.dc-how-inner { max-width: 1100px; margin: 0 auto; }

.dc-how-header {
  text-align: center;
  margin-bottom: 56px;
}

.dc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.dc-step {
  position: relative;
  text-align: center;
  padding: 40px 32px 36px;
  background: #f9fef5;
  border-radius: 24px;
  border: 2px solid #e2f5cc;
  margin: 0 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dc-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(123,186,66,0.15);
  border-color: #7BBA42;
}

.dc-step-num {
  position: absolute;
  top: -18px;
  right: 50%;
  transform: translateX(50%);
  background: linear-gradient(135deg, #4a9522, #7BBA42);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(74,149,34,0.4);
}

.dc-step-svg-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #4a9522, #7BBA42);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(74,149,34,0.25);
}
.dc-step-svg-icon svg { width: 26px; height: 26px; }

.dc-step-title {
  font-size: 20px;
  font-weight: 800;
  color: #1a2c0e;
  margin-bottom: 12px;
}

.dc-step-desc {
  font-size: 14.5px;
  color: #5a7050;
  line-height: 1.8;
}

/* connecting arrow between steps */
.dc-step-connector {
  position: absolute;
  top: 50%;
  left: -28px;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  color: #7BBA42;
  z-index: 2;
}
.dc-step-connector::after {
  content: '←';
  font-size: 22px;
  color: #7BBA42;
  position: absolute;
  top: -10px; left: 0;
}

/* ═══════════════════════════════════════════════
   FEATURED PROJECT
   ═══════════════════════════════════════════════ */
.dc-featured-section {
  padding: 80px 48px;
  background: #f4faf0;
}

.dc-featured-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.dc-featured-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(74,149,34,0.2);
  height: 400px;
}

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

.dc-featured-img-wrap:hover img { transform: scale(1.04); }

.dc-feat-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, #4a9522, #7BBA42);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.dc-feat-title {
  font-size: 34px;
  font-weight: 900;
  color: #1a2c0e;
  line-height: 1.2;
  margin-bottom: 16px;
}

.dc-feat-desc {
  font-size: 15.5px;
  color: #4a6035;
  line-height: 1.9;
  margin-bottom: 24px;
}

.dc-feat-desc strong { color: #3d8018; }

.dc-feat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.dc-feat-pill {
  background: #e8f7d6;
  color: #3d8018;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #c5e89a;
}

.dc-feat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4a9522, #7BBA42);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 15px 32px;
  font-family: 'Alexandria', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(74,149,34,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dc-feat-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(74,149,34,0.45);
}

/* ═══════════════════════════════════════════════
   WHY DASHEN — TRUST PILLARS
   ═══════════════════════════════════════════════ */
.dc-trust-section {
  padding: 80px 48px;
  background: #fff;
}

.dc-trust-inner { max-width: 1100px; margin: 0 auto; }

.dc-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dc-trust-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 22px;
  background: #f9fef5;
  border: 2px solid #e2f5cc;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dc-trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(123,186,66,0.18);
  border-color: #7BBA42;
  background: #fff;
}

.dc-trust-icon-wrap {
  width: 60px; height: 60px;
  background: #e8f7d6;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: #3d8018;
  transition: background 0.25s ease;
}
.dc-trust-card:hover .dc-trust-icon-wrap {
  background: linear-gradient(135deg, #4a9522, #7BBA42);
  color: #fff;
}
.dc-trust-icon-wrap svg { width: 26px; height: 26px; }

.dc-trust-title {
  font-size: 17px;
  font-weight: 800;
  color: #1a2c0e;
  margin-bottom: 10px;
}

.dc-trust-desc {
  font-size: 13.5px;
  color: #5a7050;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.dc-testi-section {
  padding: 80px 48px;
  background: linear-gradient(160deg, #f4faf0 0%, #e8f7d6 100%);
}

.dc-testi-inner { max-width: 1100px; margin: 0 auto; }

.dc-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dc-testi-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(74,149,34,0.1);
  border: 1px solid #dff0c4;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dc-testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(74,149,34,0.18);
}

.dc-testi-quote {
  font-size: 72px;
  line-height: 0.6;
  color: #c5e89a;
  font-family: Georgia, serif;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.dc-testi-text {
  font-size: 14.5px;
  color: #3a4f2a;
  line-height: 1.85;
  flex: 1;
}

.dc-testi-stars {
  display: flex;
  gap: 3px;
  align-items: center;
}

.dc-tstar {
  width: 16px; height: 16px;
  color: #f5a623;
  display: inline-flex;
}
.dc-tstar svg { width: 100%; height: 100%; }

.dc-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid #e8f7d6;
}

.dc-testi-initials {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.dc-testi-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a2c0e;
}

.dc-testi-role {
  font-size: 12px;
  color: #7a9a6a;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.dc-faq-section {
  padding: 80px 48px;
  background: #fff;
}

.dc-faq-inner { max-width: 820px; margin: 0 auto; }

.dc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dc-faq-item {
  border-radius: 18px;
  border: 2px solid #e2f5cc;
  background: #f9fef5;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dc-faq-item:hover {
  border-color: #7BBA42;
  box-shadow: 0 8px 24px rgba(123,186,66,0.12);
}

.dc-faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #1a2c0e;
}

.dc-faq-num {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #4a9522, #7BBA42);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.dc-faq-a {
  padding: 0 24px 20px 24px;
  font-size: 14.5px;
  color: #4a6035;
  line-height: 1.85;
  border-top: 1px solid #e2f5cc;
  padding-top: 16px;
}

/* ═══════════════════════════════════════════════
   FINAL CTA BANNER
   ═══════════════════════════════════════════════ */
.dc-cta-section {
  position: relative;
  background: linear-gradient(135deg, #3a7a18 0%, #5ba32a 40%, #7BBA42 100%);
  padding: 90px 48px;
  text-align: center;
  overflow: hidden;
}

.dc-cta-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.dc-cta-b1 { width: 400px; height: 400px; top: -150px; right: -80px; }
.dc-cta-b2 { width: 280px; height: 280px; bottom: -100px; left: -60px; }

.dc-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.dc-cta-label {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 7px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.dc-cta-title {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.dc-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  line-height: 1.7;
}

.dc-cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.dc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 16px;
  font-family: 'Alexandria', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.dc-cta-btn-label { font-size: 16px; font-weight: 700; }

.dc-cta-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.dc-cta-tel {
  background: #fff;
  color: #3d8018;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.dc-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.25);
}

.dc-cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
