/* ─── TERMS HERO WIDGET ─── */
.da-terms-hero-section {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0f1e 0%, #111827 60%, #1a2a1a 100%);
  overflow: hidden;
}

.da-terms-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80') center/cover no-repeat;
  opacity: 0.12;
}

.da-terms-hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,0.92) 0%, rgba(17,24,39,0.80) 100%);
}

.da-terms-hero-section .hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(97,206,112,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(97,206,112,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.da-terms-hero-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.da-terms-hero-section .hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
}

.da-terms-hero-section .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub, 'Montserrat', sans-serif);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.da-terms-hero-section .breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.da-terms-hero-section .breadcrumb a:hover { color: var(--green, #61CE70); }
.da-terms-hero-section .breadcrumb span { color: var(--green, #61CE70); }
.da-terms-hero-section .breadcrumb-sep { font-size: 10px; opacity: 0.4; color: rgba(255,255,255,0.6); }

.da-terms-hero-section .hero-title {
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.da-terms-hero-section .hero-title span { color: var(--green, #61CE70); }

.da-terms-hero-section .hero-sub {
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.da-terms-hero-section .hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.da-terms-hero-section .hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub, 'Montserrat', sans-serif);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

.da-terms-hero-section .hero-meta-dot {
  width: 6px; height: 6px;
  background: var(--green, #61CE70);
  border-radius: 50%;
}

.da-terms-hero-section .btn-primary {
  background: var(--green, #61CE70);
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius, 12px);
  font-family: var(--font-sub, 'Montserrat', sans-serif);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.da-terms-hero-section .btn-primary:hover {
  background: #4db85c;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(97,206,112,0.20);
}
